script/roms: fix serprog build commands

forgot to shift

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2-merge1
Leah Rowe 2024-06-16 00:40:44 +01:00 committed by Leah Rowe
parent 3269e0c097
commit 9897bc748d
1 changed files with 1 additions and 1 deletions

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