diff options
author | Will Holland <william.holland@codethink.co.uk> | 2015-09-16 16:34:31 +0100 |
---|---|---|
committer | Will Holland <william.holland@codethink.co.uk> | 2015-09-16 16:34:31 +0100 |
commit | f76cde5b0b80311e523deda48a67d8346f82f70b (patch) | |
tree | 81c840ebe77fa0f0dd3df0b0d4338633a7b6df81 /triggers | |
parent | 55936be3cc282b08bdb0265d10d89fc8e6720e44 (diff) | |
download | buildslave-scripts-f76cde5b0b80311e523deda48a67d8346f82f70b.tar.gz |
Fix to string comparison
Diffstat (limited to 'triggers')
-rw-r--r-- | triggers/testing_trigger.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/triggers/testing_trigger.sh b/triggers/testing_trigger.sh index ba4fa52..3bbef47 100644 --- a/triggers/testing_trigger.sh +++ b/triggers/testing_trigger.sh @@ -22,7 +22,7 @@ if [ -d ciat-tester ]; then fi git clone ssh://git@cu010-trove.codethink.com/cu010-trove/br6/ciat-tester cd ciat-tester -if [ "$TESTING_SHA" -ne "no_testing_sha_given" ]; then +if [ "$TESTING_SHA" != "no_testing_sha_given" ]; then git checkout $TESTING_SHA fi ./test-runner.sh file:///archive/"$ARTEFACT".raw openstack tests/python.test tests/uname.test tests/systemd.test |