Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2019-09-10 06:48:10 +0300
committernachoparker <nacho@ownyourbits.com>2019-09-10 06:48:10 +0300
commitc1e1b65616389fdb72e1a4e8dadccaad630866ff (patch)
tree484024671d7cbf2567cb59aded8bdd9e90fca992
parent06005e12e9d2f333d6b577a7ace45680c3805ebf (diff)
install: fix possible missing PATH
Signed-off-by: nachoparker <nacho@ownyourbits.com>
-rw-r--r--install.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 458810d1..40600c7c 100644
--- a/install.sh
+++ b/install.sh
@@ -22,6 +22,8 @@ trap "rm -rf \"${TMPDIR}\" ; exit 0" 0 1 2 3 15
exit 1
}
+export PATH="/usr/local/sbin:/usr/sbin:/sbin:${PATH}"
+
# check installed software
type mysqld &>/dev/null && echo ">>> WARNING: existing mysqld configuration will be changed <<<"