fix syntax

This commit is contained in:
Tobias Powalowski 2022-01-07 16:49:32 +01:00
parent 3e657f3b75
commit 29abb59dea

View file

@ -35,7 +35,7 @@ while [ $# -gt 0 ]; do
done
### check for root
if ! [[ ${UID} -eq 0 ]]; then |
if ! [[ ${UID} -eq 0 ]]; then
echo "ERROR: Please run as root user!"
exit 1
fi