From 6051e45e01944b22e7bd3a9ca83a0339a27e32ac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Fri, 14 Jun 2019 09:26:30 -0400
Subject: [PATCH] fdroid: fix spaces

Change-Id: Ic01cecc12159184b3c3e31844a98fa4bf0af6ae0
---
 fdroidMergeRequest.sh | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/fdroidMergeRequest.sh b/fdroidMergeRequest.sh
index 12e990c61..23bb0ce91 100755
--- a/fdroidMergeRequest.sh
+++ b/fdroidMergeRequest.sh
@@ -44,37 +44,37 @@ cp ${METADATA_FOLDER}/cx.ring.yml ${METADATA_FOLDER}/cx.ring.yml_
 
 head -n -11 ${METADATA_FOLDER}/cx.ring.yml_ > ${METADATA_FOLDER}/cx.ring.yml
 
-echo "  - versionName: '${versionName}'
+echo "  - versionName: ${versionName}
     versionCode: ${versionCode}
     commit: ${commit}
     timeout: 10800
     subdir: client-android/ring-android/app
     submodules: true
     gradle:
-        - noPush
+      - noPush
     rm:
-        - client-electron
-        - client-gnome
-        - client-ios
-        - client-macosx
-        - client-uwp
-        - client-windows
-        - docker
-        - docs
-        - lrc
-        - packaging
-        - scripts
+      - client-electron
+      - client-gnome
+      - client-ios
+      - client-macosx
+      - client-uwp
+      - client-windows
+      - docker
+      - docs
+      - lrc
+      - packaging
+      - scripts
     build:
-        - cd ../..
-        - export ANDROID_NDK_ROOT=\"\$ANDROID_NDK\"
-        - export ANDROID_ABI=\"armeabi-v7a arm64-v8a x86\"
-        - ./compile.sh --release --no-gradle
+      - cd ../..
+      - export ANDROID_NDK_ROOT=\"\$ANDROID_NDK\"
+      - export ANDROID_ABI=\"armeabi-v7a arm64-v8a x86\"
+      - ./compile.sh --release --no-gradle
     ndk: ${ndkVersion}" >> ${METADATA_FOLDER}/cx.ring.yml
 
 
 tail -n 12 ${METADATA_FOLDER}/cx.ring.yml_ | head -n -2 >> ${METADATA_FOLDER}/cx.ring.yml
 
-echo "CurrentVersion: '${versionName}'" >> ${METADATA_FOLDER}/cx.ring.yml
+echo "CurrentVersion: ${versionName}" >> ${METADATA_FOLDER}/cx.ring.yml
 echo "CurrentVersionCode: ${versionCode}" >> ${METADATA_FOLDER}/cx.ring.yml
 
 rm ${METADATA_FOLDER}/cx.ring.yml_
-- 
GitLab