diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-12-04 17:53:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-12-04 17:53:54 +0000 |
commit | fcf8032ac38795c132522c4be513385f45b8e066 (patch) | |
tree | d3837de6c7712622c5a4e403756e7693ee83bf6f | |
parent | c45bdc40bd061a0ff8793b6ab389fe190b4bc002 (diff) | |
download | drakx-backup-do-not-use-fcf8032ac38795c132522c4be513385f45b8e066.tar drakx-backup-do-not-use-fcf8032ac38795c132522c4be513385f45b8e066.tar.gz drakx-backup-do-not-use-fcf8032ac38795c132522c4be513385f45b8e066.tar.bz2 drakx-backup-do-not-use-fcf8032ac38795c132522c4be513385f45b8e066.tar.xz drakx-backup-do-not-use-fcf8032ac38795c132522c4be513385f45b8e066.zip |
ensure errors are propagated (shell sux)
-rwxr-xr-x | update_kernel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_kernel b/update_kernel index 460806c6d..698b6ce46 100755 --- a/update_kernel +++ b/update_kernel @@ -113,7 +113,7 @@ for i in $ALL_KERNELS/*; do echo "$kern ($main)" create_modules ../../$i $kern 2>/dev/null fi - ) + ) || exit 1 done |