aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install.sh')
-rwxr-xr-xscripts/install.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/install.sh b/scripts/install.sh
index 62a46f4f..8b7ea03f 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -2,6 +2,20 @@
2# You can execute this file to install wallabag 2# You can execute this file to install wallabag
3# eg: `sh install.sh prod` 3# eg: `sh install.sh prod`
4 4
5IGNORE_ROOT_ARG="--ignore-root-warning"
6IGNORE_ROOT=0
7
8if [ "$1" == "$IGNORE_ROOT_ARG" ]; then
9 IGNORE_ROOT=1
10fi
11
12# Abort running this script if root
13if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then
14 echo "Do not run this script as root!" >&2
15 echo "Use $IGNORE_ROOT_ARG to ignore this error." >&2
16 exit 1
17fi
18
5COMPOSER_COMMAND='composer' 19COMPOSER_COMMAND='composer'
6 20
7DIR="${BASH_SOURCE}" 21DIR="${BASH_SOURCE}"