Skip to content

Commit

Permalink
mkinitramfs: fix shellcheck warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Dec 11, 2023
1 parent 26a9fa7 commit cb42237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mkinitramfs
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ print_version() {
}

parse_options() {
OPTS=$(getopt -a -n "$ARGV0" -l $LOPTS -o $SOPTS -- "$@") || exit 1
eval set -- "$OPTS"; unset OPTS
_OPTS=$(getopt -a -n "$ARGV0" -l "$LOPTS" -o "$SOPTS" -- "$@") || exit 1
eval set -- "$_OPTS"; unset _OPTS
while true; do
case $1 in
-D| --helper) MKINITRAMFS_DEVHELPER="$2" ; shift ;;
Expand Down

0 comments on commit cb42237

Please sign in to comment.