Restored --no-error for compatibility with v20151103 and earlier

This commit is contained in:
Yamashita, Yuu
2015-12-02 23:59:41 +00:00
parent 6e91d75069
commit e230817496
2 changed files with 8 additions and 0 deletions

View File

@@ -36,6 +36,10 @@ while [ $# -gt 0 ]; do
"-f" | "--force" )
FORCE=1
;;
"--no-error" )
# for backward compatibility with v20151103 and earlier
QUIET=1
;;
"-q" | "--quiet" )
QUIET=1
;;

View File

@@ -18,6 +18,10 @@ while [ $# -gt 0 ]; do
"-f" | "--force" )
FORCE=1
;;
"--no-error" )
# for backward compatibility with v20151103 and earlier
QUIET=1
;;
"-q" | "--quiet")
QUIET=1
;;