mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
run-tests: fix quoting to prevent spurious execution of fdroid update
This commit is contained in:
parent
6f1d1b81be
commit
1bb14d2f82
1 changed files with 5 additions and 5 deletions
|
@ -316,7 +316,7 @@ if [ $? -eq 0 ]; then
|
||||||
echo "This should have failed because this repo has no keystore!"
|
echo "This should have failed because this repo has no keystore!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "`fdroid update` prompted to add keystore"
|
echo '`fdroid update` prompted to add keystore'
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
$fdroid update --create-key
|
$fdroid update --create-key
|
||||||
|
@ -378,7 +378,7 @@ if [ $? -eq 0 ]; then
|
||||||
echo "This should have failed because this repo has no keystore!"
|
echo "This should have failed because this repo has no keystore!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "`fdroid update` prompted to add keystore"
|
echo '`fdroid update` prompted to add keystore'
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -394,7 +394,7 @@ if [ $? -eq 0 ]; then
|
||||||
echo "This should have failed because this repo has a bad/fake keystore!"
|
echo "This should have failed because this repo has a bad/fake keystore!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "`fdroid update` prompted to add keystore"
|
echo '`fdroid update` prompted to add keystore'
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -422,7 +422,7 @@ if [ $? -eq 0 ]; then
|
||||||
echo "This should have failed because this repo has a bad repo_keyalias!"
|
echo "This should have failed because this repo has a bad repo_keyalias!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "`fdroid update` prompted to add keystore"
|
echo '`fdroid update` prompted to add keystore'
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -434,7 +434,7 @@ if [ $? -eq 0 ]; then
|
||||||
echo "This should have failed because a keystore is already there!"
|
echo "This should have failed because a keystore is already there!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "`fdroid update` complained about existing keystore"
|
echo '`fdroid update` complained about existing keystore'
|
||||||
fi
|
fi
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue