kernel-install: use exit instead of return (#4565)

/bin/kernel-install: line 143: return: can only `return' from a function or sourced script

https://bugzilla.redhat.com/show_bug.cgi?id=1391829
This commit is contained in:
Yu Watanabe 2016-11-04 21:58:41 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent c4c50112ec
commit 9156493171
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ case $COMMAND in
"$f" add "$KERNEL_VERSION" "$BOOT_DIR_ABS" "$KERNEL_IMAGE" "$f" add "$KERNEL_VERSION" "$BOOT_DIR_ABS" "$KERNEL_IMAGE"
x=$? x=$?
if [[ $x == $SKIP_REMAINING ]]; then if [[ $x == $SKIP_REMAINING ]]; then
return 0 exit 0
fi fi
((ret+=$x)) ((ret+=$x))
fi fi
@ -140,7 +140,7 @@ case $COMMAND in
"$f" remove "$KERNEL_VERSION" "$BOOT_DIR_ABS" "$f" remove "$KERNEL_VERSION" "$BOOT_DIR_ABS"
x=$? x=$?
if [[ $x == $SKIP_REMAINING ]]; then if [[ $x == $SKIP_REMAINING ]]; then
return 0 exit 0
fi fi
((ret+=$x)) ((ret+=$x))
fi fi