mirror of
https://github.com/zulip/zulip.git
synced 2026-06-24 21:08:25 +08:00
8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$EUID" -ne 0 ]; then
|
|
echo "Error: The installation script must be run as root" >&2
|
|
exit 1
|
|
fi
|
|
mkdir -p /var/log/zulip
|
|
"$(dirname "$(dirname "$0")")/lib/install" "$@" 2>&1 | tee -a /var/log/zulip/install.log
|