Fixed c4k_apply
This commit is contained in:
parent
8c341c551c
commit
4f33d25290
1 changed files with 3 additions and 3 deletions
|
@ -49,9 +49,9 @@ class C4kMixin(DevopsBuild):
|
||||||
chmod(self.build_path() + '/out_auth.edn', 0o600)
|
chmod(self.build_path() + '/out_auth.edn', 0o600)
|
||||||
|
|
||||||
def c4k_apply(self):
|
def c4k_apply(self):
|
||||||
cmd = [f'c4k-{self.c4k_module_name}-standalone.jar' +
|
cmd = [f'c4k-{self.c4k_module_name}-standalone.jar',
|
||||||
self.build_path() + '/out_config.edn' +
|
self.build_path() + '/out_config.edn',
|
||||||
self.build_path() + '/out_auth.edn' +
|
self.build_path() + '/out_auth.edn',
|
||||||
'> ' + self.build_path() + '/out_jitsi.yaml']
|
'> ' + self.build_path() + '/out_jitsi.yaml']
|
||||||
output = execute(cmd, True)
|
output = execute(cmd, True)
|
||||||
print(output)
|
print(output)
|
||||||
|
|
Loading…
Reference in a new issue