diff options
-rwxr-xr-x | update_bootloader_files.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/update_bootloader_files.sh b/update_bootloader_files.sh index 554f872..6cfdd8b 100755 --- a/update_bootloader_files.sh +++ b/update_bootloader_files.sh @@ -13,11 +13,11 @@ if [ -z $path ] ; then exit 1 else echo "Extracting bootloader files from repository." - rpm2cpio $path | cpio -idm + rpm2cpio $path | cpio -idm --quiet if [ $? -ne 0 ] ; then echo "ERROR: failed to extract files from archive." exit 1 fi - mv usr/share/drakiso-bootloader bootloader - rm -r usr + mv usr/share/drakiso-bootloader bootloader + rm -r usr fi |