COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/unify-sources.sh

    r343 r341  
    6666function update_done() {
    6767    echo $CHANGED_FILES out of $TOTAL_FILES files has been changed.
    68     echo $WARNED_FILES out of $TOTAL_FILES files triggered warnings.
     68    echo $WARNED_FILES out of $TOTAL_FILES files has been warned.
    6969}
    7070
     
    119119function check_done() {
    120120    echo $FAILED_FILES out of $TOTAL_FILES files has been failed.
    121     echo $WARNED_FILES out of $TOTAL_FILES files triggered warnings.
     121    echo $WARNED_FILES out of $TOTAL_FILES files has been warned.
    122122
    123123    if [ $FAILED_FILES -gt 0 ]
     
    128128        if [ "$WARNING" == 'INTERACTIVE' ]
    129129        then
    130             echo -n "Are the files with warnings acceptable? (yes/no) "
     130            echo -n "Assume as normal behaviour? (yes/no) "
    131131            while read answer
    132132            do
     
    138138                    return 1
    139139                fi
    140                 echo -n "Are the files with warnings acceptable? (yes/no) "
     140                echo -n "Assume as normal behaviour? (yes/no) "             
    141141            done
    142142        elif [ "$WARNING" == 'WERROR' ]
     
    269269Options:
    270270  --dry-run|-n
    271      Check the files, but do not modify them.
     271     Check the given files, but do not modify them.
    272272  --interactive|-i
    273      If --dry-run is specified and the checker emits warnings,
    274      then the user is asked if the warnings should be considered
    275      errors.
     273     If --dry-run is specified and files are warned, then a message is
     274     prompted whether the warnings should be turned to errors.
    276275  --werror|-w
    277      Make all warnings into errors.
     276     If --dry-run is specified, the warnings are turned to errors.
    278277  --all|-a
    279278     Check all source files in the repository.
    280279  --modified|-m
    281      Check only the modified (and new) source files. This option is
    282      useful to check the modification before making a commit.
     280     Check only the modified source files. This option is proper to
     281     use before a commit. E.g. all files which are modified or added
     282     into the repository will be updated.
    283283  --changed|-c
    284284     Check only the changed source files compared to the parent(s) of
    285      the current hg node.  This option is useful as hg hook script.
    286      To automatically check all your changes before making a commit,
    287      add the following section to the appropriate .hg/hgrc file.
     285     the current hg node.  This option is proper to use as hg hook
     286     script. E.g. to check all your commited source files with this
     287     script add the following section to the appropriate .hg/hgrc
     288     file.
    288289
    289290       [hooks]
Note: See TracChangeset for help on using the changeset viewer.