dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit e8cea8b5956f1f3c186895b7b404cee0fa66d68a
parent cb4997e7af61b423d79129b6b19bf9ddfe10034f
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 27 Feb 2020 09:21:09 +0100

Print unknown option to stdout

Diffstat:
M.local/bin/template.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/template.sh b/.local/bin/template.sh @@ -41,7 +41,7 @@ while :; do shift break;; -?*) - die 'unknown option specified';; + die "unknown option specified: $1";; *) # No more options break esac