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.
This commit is contained in:
parent
0c76ed72fb
commit
44e654bc95
2
install
2
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
|
||||
|
|
Loading…
Reference in New Issue