diff options
Diffstat (limited to 'etc/functions/off')
-rw-r--r-- | etc/functions/off | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/off b/etc/functions/off index f1c104d..36e5aeb 100644 --- a/etc/functions/off +++ b/etc/functions/off @@ -33,7 +33,7 @@ while [[ $1 == -* ]] { return 0 ;; -|--) shift; break ;; - *) fdie "Unrecognized option: $1"; return 1 ;; + *) echo "Unrecognized option: $1" >&2 ; return 1 ;; esac shift } |