about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2026-03-24 19:55:08 +0000
committerArun Isaac2026-03-24 19:56:42 +0000
commit71525e1d9b452b885e2be34cebdf807b8b2a2c1b (patch)
treef1d95060e9af7a0eafa74b7ab39a23b8a197aaaf
parent72af9807552e2fe6e577e474d0722066b69aaef4 (diff)
downloadccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.tar.gz
ccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.tar.lz
ccwl-71525e1d9b452b885e2be34cebdf807b8b2a2c1b.zip
scripts: Treat -h the same as --help.
Change-Id: I5741f74ccaa9ff36765d8c81b7bae9bcdccdc0c7
-rwxr-xr-xscripts/ccwl4
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))))