浏览代码

Handle commented out variables

Bob Mottram 7 年前
父节点
当前提交
26c6a36b72
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3
    0
      src/freedombone-utils-android

+ 3
- 0
src/freedombone-utils-android 查看文件

59
                 if ! grep -q "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
59
                 if ! grep -q "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
60
                     continue
60
                     continue
61
                 fi
61
                 fi
62
+                if grep -q "#${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename"; then
63
+                    continue
64
+                fi
62
                 # shellcheck disable=SC2140
65
                 # shellcheck disable=SC2140
63
                 "${app_name_upper}_SHORT_DESCRIPTION"="$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | awk -F '=' '{print $2}')"
66
                 "${app_name_upper}_SHORT_DESCRIPTION"="$(grep "${app_name_upper}_SHORT_DESCRIPTION=" "$app_filename" | head -n 1 | awk -F '=' '{print $2}')"
64
 
67