From 44e654bc95acc59a2189e2a026ad1a29d7a67d2c Mon Sep 17 00:00:00 2001 From: Marc-Alexandre Espiaut <76531574+malespiaut@users.noreply.github.com> Date: Tue, 24 Aug 2021 08:00:16 +0000 Subject: [PATCH] Fixing a permission bug in the install script. On a fresh Ubuntu 18.04 install, the script stops when trying to execute `build.sh`. Calling `bash` to launch the script fixes the issue. --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 055abe74d..b1c7fa9db 100755 --- a/install +++ b/install @@ -777,7 +777,7 @@ if [[ ! ${commandFound} -eq 0 ]]; then fi # Run composer (install PHP dependencies) and create a VERSION file -loudCmd "./build.sh" +loudCmd "bash ./build.sh" if [ -f /etc/airtime/airtime.conf ]; then # TODO use VERSION or some other way to check for updates and handle # media-monitor case on it's own