|
@@ -62,16 +62,16 @@ function android_update_apps {
|
62
|
62
|
if grep -q "#${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
|
63
|
63
|
continue
|
64
|
64
|
fi
|
65
|
|
- SHORT_DESCRIPTION=$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | awk -F '=' '{print $2}')
|
|
65
|
+ 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}')
|
66
|
66
|
|
67
|
67
|
if grep -q "${app_name_upper}_DESCRIPTION=" "$app_filename"; then
|
68
|
|
- DESCRIPTION="$(grep "${app_name_upper}_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | awk -F '=' '{print $2}')"
|
|
68
|
+ DESCRIPTION="$(grep "${app_name_upper}_DESCRIPTION=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
|
69
|
69
|
fi
|
70
|
70
|
if grep -q "${app_name_upper}_ICON_URL=" "$app_filename"; then
|
71
|
|
- ICON_URL="$(grep "${app_name_upper}_ICON_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | awk -F '=' '{print $2}')"
|
|
71
|
+ ICON_URL="$(grep "${app_name_upper}_ICON_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
|
72
|
72
|
fi
|
73
|
73
|
if grep -q "${app_name_upper}_MOBILE_APP_URL=" "$app_filename"; then
|
74
|
|
- MOBILE_APP_URL="$(grep "${app_name_upper}_MOBILE_APP_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | awk -F '=' '{print $2}')"
|
|
74
|
+ MOBILE_APP_URL="$(grep "${app_name_upper}_MOBILE_APP_URL=" "$app_filename" | head -n 1 | sed 's|\$||g' | sed 's|\$||g' | sed "s|'||g" | sed 's|\"||g' | awk -F '=' '{print $2}')"
|
75
|
75
|
fi
|
76
|
76
|
|
77
|
77
|
if [ $android_ctr -gt 0 ]; then
|