diff options
author | Harald Hoyer <harald@redhat.com> | 2012-05-24 16:07:35 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2012-05-24 16:07:35 +0200 |
commit | bd2b15138e1e1da8bc21072cf585179985c902e1 (patch) | |
tree | c82444ccff4999e5b20d165f22ba37213a5c7eb7 | |
parent | 7b17d413b11bfbdb4442c87b1db25b37ed5162ac (diff) |
test/TEST-01-BASIC: add missing "; then"
-rwxr-xr-x | test/TEST-01-BASIC/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TEST-01-BASIC/test.sh b/test/TEST-01-BASIC/test.sh index 22517a831e..6e7e97ef43 100755 --- a/test/TEST-01-BASIC/test.sh +++ b/test/TEST-01-BASIC/test.sh @@ -43,7 +43,7 @@ run_nspawn() { test_run() { run_qemu || return 1 - if [[ -d /sys/fs/cgroup/systemd ]] + if [[ -d /sys/fs/cgroup/systemd ]]; then run_nspawn || return 1 fi return 0 |