From 8a65e0f1d76569dca8fe7fc0ab93b5036e81840c Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Fri, 3 Apr 2020 00:55:15 +0200 Subject: [PATCH] chmod'ing all scripts before usage --- scripts/travis.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/travis.sh b/scripts/travis.sh index e38f69cb..644f57c0 100644 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -160,8 +160,7 @@ execute \ "Failed to update npm" \ "npm install" -sudo docker exec -it emscripten bash -c 'web/native-codec/build.sh' -docker exec -it emscripten bash -c 'web/native-codec/build.sh' +chmod +x ./web/native-codec/build.sh execute \ "Failed to build native opus codec" \ "docker exec -it emscripten bash -c 'web/native-codec/build.sh'" @@ -210,6 +209,8 @@ function execute_build_debug() { move_target_file } +chmod +x ./scripts/build.sh +chmod +x ./scripts/web_package.sh if [[ ${build_release} ]]; then execute_build_release fi