summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis 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)
commitb39f62fb1bb2b0a61fa727922142482296e66fa8 (patch)
tree9f7b7d7163b0d121389a2cc124e0c8e3ccb55e2f
parent4b42375113701d661a025d7d8ef70d62b90fb3a6 (diff)
downloadlibreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.zip
libreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.tar.gz
libreboot-b39f62fb1bb2b0a61fa727922142482296e66fa8.tar.bz2
build/config/corebootupdate: don't use ls
-rwxr-xr-xresources/scripts/helpers/build/config/corebootupdate2
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