Skip to content

Commit

Permalink
Fix wrong pattern matching in parse_args
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartFinn committed Feb 6, 2023
1 parent 6837aa9 commit 4c3467b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion papirus-folders
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ parse_args() {
--default) args+=( -D ) ;;
--restore) args+=( -R ) ;;
--version) args+=( -V ) ;;
--[0-9a-Z]*)
--[0-9a-zA-Z]*)
err "illegal option -- '$arg'"
usage 2
;;
Expand Down

0 comments on commit 4c3467b

Please sign in to comment.