Changeset 328:cdbff91c2166 in lemon-main
- Timestamp:
- 10/20/08 12:17:24 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/unify-sources.sh
r324 r328 213 213 cat $1 | sed -e 's/ \+$//g' >$TMP_FILE 214 214 215 "$ACTION"_action "$TMP_FILE" "$1" ' spaces'215 "$ACTION"_action "$TMP_FILE" "$1" 'trailing spaces' 216 216 } 217 217 … … 226 226 227 227 function process_file() { 228 echo -n " $ACTION " $1...228 echo -n " $ACTION $1..." 229 229 230 230 CHECKING="header tabs spaces long_lines" … … 260 260 Check the given files, but do not modify them. 261 261 --interactive|-i 262 If --dry-run is specified and files are warned then a message is262 If --dry-run is specified and files are warned, then a message is 263 263 prompted whether the warnings should be turned to errors. 264 264 --werror|-w 265 If --dry-run is specified andthe warnings are turned to errors.265 If --dry-run is specified, the warnings are turned to errors. 266 266 --all|-a 267 All files in the repository will be checked.267 Check all source files in the repository. 268 268 --modified|-m 269 269 Check only the modified source files. This option is proper to … … 283 283 Print this help message. 284 284 files 285 The files to check/unify. If no file names are given, the 286 modified source will be checked/unified287 285 The files to check/unify. If no file names are given, the modified 286 source files will be checked/unified (just like using the 287 --modified|-m option). 288 288 " 289 289 exit 0 290 290 elif [ "$1" == '--dry-run' ] || [ "$1" == '-n' ] 291 291 then 292 [ -n "$ACTION" ] && echo " Invalid option $1" >&2 && exit 1292 [ -n "$ACTION" ] && echo "Conflicting action options" >&2 && exit 1 293 293 ACTION=check 294 294 elif [ "$1" == "--all" ] || [ "$1" == '-a' ] 295 295 then 296 [ -n "$FILES" ] && echo " Invalid option $1" >&2 && exit 1296 [ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1 297 297 FILES=all_files 298 298 elif [ "$1" == "--changed" ] || [ "$1" == '-c' ] 299 299 then 300 [ -n "$FILES" ] && echo " Invalid option $1" >&2 && exit 1300 [ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1 301 301 FILES=changed_files 302 302 elif [ "$1" == "--modified" ] || [ "$1" == '-m' ] 303 303 then 304 [ -n "$FILES" ] && echo " Invalid option $1" >&2 && exit 1304 [ -n "$FILES" ] && echo "Conflicting target options" >&2 && exit 1 305 305 FILES=modified_files 306 306 elif [ "$1" == "--interactive" ] || [ "$1" == "-i" ] 307 307 then 308 [ -n "$WARNING" ] && echo " Invalid option $1" >&2 && exit 1308 [ -n "$WARNING" ] && echo "Conflicting warning options" >&2 && exit 1 309 309 WARNING='INTERACTIVE' 310 310 elif [ "$1" == "--werror" ] || [ "$1" == "-w" ] 311 311 then 312 [ -n "$WARNING" ] && echo " Invalid option $1" >&2 && exit 1312 [ -n "$WARNING" ] && echo "Conflicting warning options" >&2 && exit 1 313 313 WARNING='WERROR' 314 elif [ $(echo $1 | cut -c 1) == '-' ]314 elif [ $(echo x$1 | cut -c 2) == '-' ] 315 315 then 316 316 echo "Invalid option $1" >&2 && exit 1
Note: See TracChangeset
for help on using the changeset viewer.