1
0
forked from mir/linux-vm-tools

Fix shellcheck reported problems

This commit is contained in:
Samuel Henrique
2018-10-01 14:14:50 -03:00
parent 4748bda5fb
commit 1a5b61853f
5 changed files with 10 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
# The configuration is adapted from the Ubuntu 16.04 script.
#
if [ $(id -u) -ne 0 ]; then
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run with root privileges' >&2
exit 1
fi