diff options
| author | Arun Isaac | 2026-03-24 19:55:08 +0000 |
|---|---|---|
| committer | Arun Isaac | 2026-03-24 19:56:42 +0000 |
| commit | 71525e1d9b452b885e2be34cebdf807b8b2a2c1b (patch) | |
| tree | f1d95060e9af7a0eafa74b7ab39a23b8a197aaaf | |
| parent | 72af9807552e2fe6e577e474d0722066b69aaef4 (diff) | |
| download | ccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.tar.gz ccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.tar.lz ccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.zip | |
scripts: Treat -h the same as --help.
Change-Id: I5741f74ccaa9ff36765d8c81b7bae9bcdccdc0c7
| -rwxr-xr-x | scripts/ccwl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ccwl b/scripts/ccwl index fbd549d..a8b690b 100755 --- a/scripts/ccwl +++ b/scripts/ccwl @@ -3,7 +3,7 @@ exec guile --no-auto-compile -e main -s "$0" "$@" !# ;;; ccwl --- Concise Common Workflow Language -;;; Copyright © 2021–2025 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2021–2026 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of ccwl. ;;; @@ -46,7 +46,7 @@ exec guile --no-auto-compile -e main -s "$0" "$@" (error "Invalid argument" arg)) (define %help-option - (option (list "help") #f #t + (option (list #\h "help") #f #t (lambda (opt name arg result) (acons 'help #t result)))) |
