Changes in scripts/unify-sources.sh [396:c5f010a5647a:341:f8832dc16d45] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/unify-sources.sh
r396 r341 131 131 echo $WARNED_FILES out of $TOTAL_FILES files triggered warnings. 132 132 133 if [ $WARNED_FILES -gt 0 -o $FAILED_FILES -gt 0 ] 133 if [ $FAILED_FILES -gt 0 ] 134 then 135 return 1 136 elif [ $WARNED_FILES -gt 0 ] 134 137 then 135 138 if [ "$WARNING" == 'INTERACTIVE' ] 136 139 then 137 echo -n "Are the files with errors/warnings acceptable? (yes/no) "140 echo -n "Are the files with warnings acceptable? (yes/no) " 138 141 while read answer 139 142 do … … 145 148 return 1 146 149 fi 147 echo -n "Are the files with errors/warnings acceptable? (yes/no) "150 echo -n "Are the files with warnings acceptable? (yes/no) " 148 151 done 149 152 elif [ "$WARNING" == 'WERROR' ]
Note: See TracChangeset
for help on using the changeset viewer.