From b6a5e6c9a93ce88009203d6dc4f35f4f8cacbdbd Mon Sep 17 00:00:00 2001 From: Preston Kutzner Date: Thu, 26 Apr 2018 20:02:51 -0500 Subject: [PATCH] Fix missing ';' --- xo_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xo_install.sh b/xo_install.sh index 28323ad..f5bdc11 100644 --- a/xo_install.sh +++ b/xo_install.sh @@ -1,7 +1,7 @@ #!/bin/bash # Check if we were effectively run as root -[ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1 } +[ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1; } xo_branch="master" xo_server="https://github.com/vatesfr/xen-orchestra"