Skip to content
Snippets Groups Projects
Unverified Commit b51f5f6c authored by Sébastien Blin's avatar Sébastien Blin
Browse files

fdroid: add quotes if version is a number

Change-Id: Iaf5112340f43c4238a426972339929df2652c2b2
parent 6051e45e
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,10 @@ cp ${METADATA_FOLDER}/cx.ring.yml ${METADATA_FOLDER}/cx.ring.yml_ ...@@ -44,6 +44,10 @@ cp ${METADATA_FOLDER}/cx.ring.yml ${METADATA_FOLDER}/cx.ring.yml_
head -n -11 ${METADATA_FOLDER}/cx.ring.yml_ > ${METADATA_FOLDER}/cx.ring.yml head -n -11 ${METADATA_FOLDER}/cx.ring.yml_ > ${METADATA_FOLDER}/cx.ring.yml
if [[ ${versionName} =~ ^[0-9]+$ ]]; then
versionName="'${versionName}'"
fi
echo " - versionName: ${versionName} echo " - versionName: ${versionName}
versionCode: ${versionCode} versionCode: ${versionCode}
commit: ${commit} commit: ${commit}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment