diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-16 00:40:44 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-16 00:40:57 +0100 |
commit | 7bc9fcc34214c7235df865cbe035ea3f565ee01b (patch) | |
tree | ca54b637f4906dec236663cef961e85b52bf6fd4 /script | |
parent | 0dfe3aed91d51e1eacd8ecc24d5e4167ff5fbca7 (diff) |
script/roms: fix serprog build commands
forgot to shift
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/roms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/roms b/script/roms index d274eb63..09aa1cb1 100755 --- a/script/roms +++ b/script/roms @@ -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 |