diff --git a/ci/bin/build.sh b/ci/bin/build.sh index f40dc70..4e40b21 100755 --- a/ci/bin/build.sh +++ b/ci/bin/build.sh @@ -8,4 +8,4 @@ export PATH="/usr/local/lib/nodejs/bin:${PATH}" npm i # tar node_modules to keep the number of files low to upload -tar -zcvf node_modules.tar.gz node_modules +tar -zcf node_modules.tar.gz node_modules diff --git a/ci/bin/run.sh b/ci/bin/run.sh index f1d4523..92b18d6 100755 --- a/ci/bin/run.sh +++ b/ci/bin/run.sh @@ -16,7 +16,7 @@ export PATH="/usr/local/lib/nodejs/bin:${PATH}" #npm i # install from artifacts if [[ -f "node_modules.tar.gz" ]];then - tar -zxvf node_modules.tar.gz + tar -zxf node_modules.tar.gz fi # generate key for paths etc diff --git a/ci/configs/local-hostpath/basic.yaml b/ci/configs/local-hostpath/basic.yaml index 036d68e..5f5b32a 100644 --- a/ci/configs/local-hostpath/basic.yaml +++ b/ci/configs/local-hostpath/basic.yaml @@ -5,4 +5,4 @@ local-hostpath: controllerBasePath: "/tmp/local-hostpath/${CI_BUILD_KEY}/controller" dirPermissionsMode: "0777" dirPermissionsUser: root - dirPermissionsGroup: wheel + dirPermissionsGroup: root