Fix missing ';'

This commit is contained in:
Preston Kutzner 2018-04-26 20:02:51 -05:00
parent 55ca93427c
commit b6a5e6c9a9
1 changed files with 1 additions and 1 deletions

View File

@ -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"