roms: explicitly shift by 1 on the "all" target

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit2
Leah Rowe 2024-06-28 14:57:07 +01:00 committed by Leah Rowe
parent bd8f0e0bbb
commit d3ccb4d8a7
1 changed files with 1 additions and 1 deletions

View File

@ -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