Skip to content
This repository has been archived by the owner. It is now read-only.

fix missing space in test condition #18

Merged
merged 1 commit into from Dec 20, 2018
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -5,7 +5,7 @@
# ** You will need to setup that manually beforehand**
# ==================================

if [ `id -u`-ne 0 ] ; then
if [ `id -u` -ne 0 ] ; then
echo "[ERROR] This script needs to run with root permissions"
return 1
fi