From cdc95c459520cfd5f94622640dd53cbe4ac633a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 12 Jul 2010 11:15:51 +0200 Subject: [PATCH] Fix '-?'-caused pattern match. --- sunrise-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunrise-commit b/sunrise-commit index 0918a69..0ed33d9 100755 --- a/sunrise-commit +++ b/sunrise-commit @@ -123,7 +123,7 @@ main() { while [ ${#} -gt 0 ]; do case "${1}" in - --help|-?|-h) + --help|-\?|-h) print_help exit 0 ;;