aboutsummaryrefslogtreecommitdiff
path: root/libreboot
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2017-07-16 13:01:59 +0000
committerGogs <gogitservice@gmail.com>2017-07-16 13:01:59 +0000
commit5e298ab6d8f7b3bf9e54318ca6127cf908cd1d6e (patch)
treefcf2cab88047c88e0c6df86d399b15d89ff7051f /libreboot
parent40a01682c10fbf0b7239b072f1018fb832469422 (diff)
parent547be866932ec92ca818a7ed661519dd9be598d5 (diff)
downloadlibrebootfr-5e298ab6d8f7b3bf9e54318ca6127cf908cd1d6e.tar.gz
librebootfr-5e298ab6d8f7b3bf9e54318ca6127cf908cd1d6e.zip
Merge branch 'libs-arrays' of kragle/libreboot into master
Diffstat (limited to 'libreboot')
-rwxr-xr-xlibreboot4
1 files changed, 2 insertions, 2 deletions
diff --git a/libreboot b/libreboot
index ce3735d0..4a3aceb3 100755
--- a/libreboot
+++ b/libreboot
@@ -26,7 +26,7 @@ libreboot_usage() {
printf '\n%s\n' 'Generic project actions:' >&2
- for action in ${PROJECT_ACTIONS_GENERIC}; do
+ for action in "${PROJECT_ACTIONS_GENERIC[@]}"; do
printf '%s\n' " ${action}" >&2
done
@@ -46,7 +46,7 @@ libreboot_usage() {
printf '\n%s\n' 'Generic tool actions:' >&2
- for action in ${TOOL_ACTIONS_GENERIC}; do
+ for action in "${TOOL_ACTIONS_GENERIC[@]}"; do
printf '%s\n' " ${action}" >&2
done