script/roms: fix serprog build commands

forgot to shift

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2024-06-16 00:40:44 +01:00
parent 0dfe3aed91
commit 7bc9fcc342
+1 -1
View File
@@ -29,7 +29,7 @@ main()
{
while [ $# -gt 0 ]; do
[ "$1" = "list" ] && eval "x_ ls -1 config/coreboot; return 0"
[ "$1" = "serprog" ] && eval "shift 1; mkserprog $@; return 0"
[ "$1" = "serprog" ] && shift && eval "mkserprog $@; return 0"
[ "$1" = "all" ] && shift && continue
boards="$1 $boards"; shift 1
done