diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-01-04 00:25:26 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-01-04 00:25:26 +0000 |
commit | 07a95d825007b1463d339612ba0c6f16de7852d0 (patch) | |
tree | 024ee7d5cb60d866f7604947821745c6831ec6eb | |
parent | 6248aa59cfb946ddc1395a9def0cbd15e84ceca2 (diff) | |
download | draklive-config-07a95d825007b1463d339612ba0c6f16de7852d0.tar draklive-config-07a95d825007b1463d339612ba0c6f16de7852d0.tar.gz draklive-config-07a95d825007b1463d339612ba0c6f16de7852d0.tar.bz2 draklive-config-07a95d825007b1463d339612ba0c6f16de7852d0.tar.xz draklive-config-07a95d825007b1463d339612ba0c6f16de7852d0.zip |
Minor cleanup.
-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 |