summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-27 20:54:13 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-27 20:54:56 +0000
commit1e8f96a075a7e72d5d15c059795abc871bcf5c6a (patch)
treebb8d71cc089535c87daf02d1afb3050faeb4c036
parent25aad749715522ea072296097bf30101be499538 (diff)
downloadmullvadvpn-1e8f96a075a7e72d5d15c059795abc871bcf5c6a.tar.xz
mullvadvpn-1e8f96a075a7e72d5d15c059795abc871bcf5c6a.zip
Update error message
-rw-r--r--ci/ci-android-xml.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci-android-xml.sh b/ci/ci-android-xml.sh
index e15cc3a4b3..bf3b0dc9ae 100644
--- a/ci/ci-android-xml.sh
+++ b/ci/ci-android-xml.sh
@@ -21,7 +21,7 @@ function tidy-up-android-xml {
function tidy-verify-xml {
tidy-up-android-xml
if (( $(git diff android/src/main/AndroidManifest.xml android/src/main/res/ | wc -l) > 0 )); then
- echo "android/src/main contains that were changed, XML is not formatted properly"
+ echo "android/src/main contains files that were changed, XML is not formatted properly"
git diff -- android/src/main/AndroidManifest.xml android/src/main/res
return 1;
else