From: Yu Watanabe Date: Fri, 4 Nov 2016 12:58:41 +0000 (+0900) Subject: kernel-install: use exit instead of return (#4565) X-Git-Tag: v233~459 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9156493171cf2d78e1ac1a3746c385b0e281acf1;p=thirdparty%2Fsystemd.git 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 --- diff --git a/src/kernel-install/kernel-install b/src/kernel-install/kernel-install index 0c0ee718acc..a95b9717f02 100644 --- a/src/kernel-install/kernel-install +++ b/src/kernel-install/kernel-install @@ -127,7 +127,7 @@ case $COMMAND in "$f" add "$KERNEL_VERSION" "$BOOT_DIR_ABS" "$KERNEL_IMAGE" x=$? if [[ $x == $SKIP_REMAINING ]]; then - return 0 + exit 0 fi ((ret+=$x)) fi @@ -140,7 +140,7 @@ case $COMMAND in "$f" remove "$KERNEL_VERSION" "$BOOT_DIR_ABS" x=$? if [[ $x == $SKIP_REMAINING ]]; then - return 0 + exit 0 fi ((ret+=$x)) fi