浏览代码

Check that completion file exists

Bob Mottram 8 年前
父节点
当前提交
bcd762e8dd
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      src/freedombone-selector

+ 4
- 0
src/freedombone-selector 查看文件

@@ -59,6 +59,10 @@ function item_in_array {
59 59
 
60 60
 function app_is_installed {
61 61
 	app_name="$1"
62
+	if [ ! -f $COMPLETION_FILE ]; then
63
+		echo "0"
64
+	fi
65
+
62 66
 	if ! grep -Fxq "install_${app_name}" $COMPLETION_FILE; then
63 67
 		echo "0"
64 68
 	else