diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 03:17:55 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 03:17:55 +0100 |
commit | b39f62fb1bb2b0a61fa727922142482296e66fa8 (patch) | |
tree | 9f7b7d7163b0d121389a2cc124e0c8e3ccb55e2f /resources/scripts/helpers/build | |
parent | 4b42375113701d661a025d7d8ef70d62b90fb3a6 (diff) | |
download | librebootfr-b39f62fb1bb2b0a61fa727922142482296e66fa8.tar.gz librebootfr-b39f62fb1bb2b0a61fa727922142482296e66fa8.zip |
build/config/corebootupdate: don't use ls
Diffstat (limited to 'resources/scripts/helpers/build')
-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 0ecf0eb7..a53df795 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 |