diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 23:47:29 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 23:47:29 (EDT) |
commit | a57f26f2c62805b9e61719361ca17ccf53c897ad (patch) | |
tree | 31777747249a8b538fa6f1bbbec39b131be59044 /resources/scripts/helpers/build/config | |
parent | 8c07c380121cdab4efd50cff453875903b8c67ef (diff) | |
download | libreboot-a57f26f2c62805b9e61719361ca17ccf53c897ad.zip libreboot-a57f26f2c62805b9e61719361ca17ccf53c897ad.tar.gz libreboot-a57f26f2c62805b9e61719361ca17ccf53c897ad.tar.bz2 |
all scripts: general fixes and clean up
Diffstat (limited to 'resources/scripts/helpers/build/config')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootmodify | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootupdate | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/config/corebootmodify b/resources/scripts/helpers/build/config/corebootmodify index 890426e..6261d0b 100755 --- a/resources/scripts/helpers/build/config/corebootmodify +++ b/resources/scripts/helpers/build/config/corebootmodify @@ -30,7 +30,7 @@ cd "resources/libreboot/config/grub/" if [ $# -lt 1 ]; then configs="$(for config in *; do printf "%s\n" "${config}"; done)" else - configs="$@" + configs="${*}" fi cd "../../../../coreboot/" diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace index 140372d..d5fdcb2 100755 --- a/resources/scripts/helpers/build/config/corebootreplace +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -30,7 +30,7 @@ cd "resources/libreboot/config/grub/" if [ $# -lt 1 ]; then configs="$(for config in *; do printf "%s\n" "${config}"; done)" else - configs="$@" + configs="${*}" fi cd "../../../../coreboot/" diff --git a/resources/scripts/helpers/build/config/corebootupdate b/resources/scripts/helpers/build/config/corebootupdate index a53df79..64fcd75 100755 --- a/resources/scripts/helpers/build/config/corebootupdate +++ b/resources/scripts/helpers/build/config/corebootupdate @@ -30,7 +30,7 @@ cd "resources/libreboot/config/grub/" if [ $# -lt 1 ]; then configs="$(for i in *; do printf "%s\n" "${i}"; done)" else - configs="$@" + configs="${*}" fi cd "../../../../coreboot/" |