diff --git a/src/freedombone-utils-selector b/src/freedombone-utils-selector index 23f80676..062f0923 100755 --- a/src/freedombone-utils-selector +++ b/src/freedombone-utils-selector @@ -68,8 +68,8 @@ function remove_app { if [ ! -f $REMOVED_APPS_FILE ]; then touch $REMOVED_APPS_FILE fi - if ! grep -Fxq "-$app_name" $REMOVED_APPS_FILE; then - echo "-$app_name" >> $REMOVED_APPS_FILE + if ! grep -Fxq "_${app_name}_" $REMOVED_APPS_FILE; then + echo "_${app_name}_" >> $REMOVED_APPS_FILE fi } @@ -81,7 +81,7 @@ function app_is_removed { return fi - if ! grep -Fxq "-$app_name" $REMOVED_APPS_FILE; then + if ! grep -Fxq "_${app_name}_" $REMOVED_APPS_FILE; then echo "0" else echo "1" @@ -95,7 +95,7 @@ function reinstall_app { return fi if [[ $(app_is_removed $app_name) == "1" ]]; then - sed -i "/-${app_name}/d" $REMOVED_APPS_FILE + sed -i "/_${app_name}_/d" $REMOVED_APPS_FILE fi }