diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 22:17:55 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 22:17:55 (EDT) |
commit | b39f62fb1bb2b0a61fa727922142482296e66fa8 (patch) | |
tree | 9f7b7d7163b0d121389a2cc124e0c8e3ccb55e2f /resources/scripts/helpers | |
parent | 4b42375113701d661a025d7d8ef70d62b90fb3a6 (diff) | |
download | libreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.zip libreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.tar.gz libreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.tar.bz2 |
build/config/corebootupdate: don't use ls
Diffstat (limited to 'resources/scripts/helpers')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootupdate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/config/corebootupdate b/resources/scripts/helpers/build/config/corebootupdate index 0ecf0eb..a53df79 100755 --- a/resources/scripts/helpers/build/config/corebootupdate +++ b/resources/scripts/helpers/build/config/corebootupdate @@ -28,7 +28,7 @@ set -u -e cd "resources/libreboot/config/grub/" if [ $# -lt 1 ]; then - configs="$(ls)" + configs="$(for i in *; do printf "%s\n" "${i}"; done)" else configs="$@" fi |