summaryrefslogtreecommitdiff
path: root/ci/rpmostree.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2019-01-24 11:36:40 +0100
committerAtomic Bot <atomic-devel@projectatomic.io>2019-03-01 16:41:09 +0000
commitbb141d38daf0114f69362a160c2965d3e5f69474 (patch)
tree1c6bc5aab9a85ab40e2bd3c640705d755b27f643 /ci/rpmostree.sh
parentcfc6046689f828cff4f914fdddb1350f7b576f42 (diff)
downloadostree-bb141d38daf0114f69362a160c2965d3e5f69474.tar.gz
ci/rpmostree: Fix use of `fatal`
We're not using libtest, just inline it. Closes: #1806 Approved by: jlebon
Diffstat (limited to 'ci/rpmostree.sh')
-rwxr-xr-xci/rpmostree.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/rpmostree.sh b/ci/rpmostree.sh
index 421aca38..85425c3d 100755
--- a/ci/rpmostree.sh
+++ b/ci/rpmostree.sh
@@ -45,7 +45,7 @@ make -j 8 check
# Basic sanity test of rpm-ostree+new ostree by restarting rpm-ostreed
if ! make vmsync; then
ssh -o User=root vmcheck 'journalctl --no-pager | tail -1000'
- fatal "vmsync failed"
+ echo "vmsync failed"; exit 1
fi
# Now run tests; just a subset ⊂ for now to avoid CI overload
make vmcheck TESTS="layering-basic-1 layering-basic-2"