diff options
author | Micah Anderson <micah@riseup.net> | 2017-11-16 13:12:13 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2017-11-16 13:15:40 -0500 |
commit | 5a25afe09665693f08f74d139cd52a671d0d05b6 (patch) | |
tree | 2735da5e026204c76a276ce343f41fcd160acf5f /tests | |
parent | 6cc86459acccc915cb3dd4c9700dd5b64aef50c2 (diff) |
CI: fix soledad version number
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/platform-ci/ci-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/platform-ci/ci-build.sh b/tests/platform-ci/ci-build.sh index 2b665749..909ed1b1 100755 --- a/tests/platform-ci/ci-build.sh +++ b/tests/platform-ci/ci-build.sh @@ -194,9 +194,9 @@ run() { soledad_migration() { # check the version of soledad installed # if the version is not greater than 0.9, we need to do the migration - if ! LEAP_CMD run "dpkg --compare-versions \$(dpkg -l |grep soledad-server|grep ^ii|awk '{ print \$3}') gt 0.9" vm |grep -q oops + if ! LEAP_CMD run "dpkg --compare-versions \$(dpkg -l |grep soledad-server|grep ^ii|awk '{ print \$3}') gt 0.8" vm |grep -q oops then - echo "Need to migrate from soledad 0.9!" + echo "Need to migrate from soledad 0.8!" if ! LEAP_CMD run 'systemctl stop leap-mx' vm then fail fi |