Skip to content
Snippets Groups Projects
Commit 8d0af365 authored by Bob Mottram's avatar Bob Mottram
Browse files

Increment when continuing

parent 3adf7361
No related branches found
No related tags found
No related merge requests found
...@@ -74,9 +74,11 @@ function android_update_apps { ...@@ -74,9 +74,11 @@ function android_update_apps {
MOBILE_APP_URL= MOBILE_APP_URL=
if ! grep -q "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then if ! grep -q "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
app_index=$((app_index+1))
continue continue
fi fi
if grep -q "#${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then if grep -q "#${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
app_index=$((app_index+1))
continue continue
fi fi
SHORT_DESCRIPTION="$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')" SHORT_DESCRIPTION="$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment