Skip to content

Commit

Permalink
rejmerge: fix shellcheck warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Dec 11, 2023
1 parent 670318a commit f33a2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rejmerge
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ print_version() {
}

parse_options() {
_OPTS=$(getopt -a -n rejmerge -l $LOPTS -o $SOPTS -- "$@") || exit 1
_OPTS=$(getopt -a -n rejmerge -l "$LOPTS" -o "$SOPTS" -- "$@") || exit 1
eval set -- "$_OPTS"; unset _OPTS
while true; do
case $1 in
Expand Down

0 comments on commit f33a2f7

Please sign in to comment.