alpine: fix bug in conditional expression (#108)

This commit is contained in:
William Boman 2020-07-08 17:42:14 +02:00 committed by GitHub
parent a83aab14b3
commit 6a2521f162
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
#!/bin/sh
if [ "$1" = "thelounge" -a "$(id -u)" = '0' ]; then
if [ "$1" = "thelounge" ] && [ "$(id -u)" = '0' ]; then
find "${THELOUNGE_HOME}" \! -user node -exec chown node '{}' +
exec su node -c "$*"
fi