summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-28 14:57:07 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-28 14:57:07 +0100
commited3cce84bc2da88b72e727d9af53a765a1c3e288 (patch)
tree5b32e6d6e9abce16ab321bfdb163b24151f219aa /script
parent359d00bd5614d840fa6c75efc111604819bfbfd5 (diff)
roms: explicitly shift by 1 on the "all" target
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/roms2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/roms b/script/roms
index 12f9e1c1..359d5725 100755
--- a/script/roms
+++ b/script/roms
@@ -41,7 +41,7 @@ main()
ser="$2" && shift 2 && continue
fi
[ "$1$ser" = "list" ] && x_ ls -1 config/coreboot && return 0
- [ "$1" = "all" ] && shift && continue
+ [ "$1" = "all" ] && shift 1 && continue
boards="$1 $boards"; shift 1
done