소스 검색

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