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

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2024-06-28 14:57:07 +01:00
parent 359d00bd56
commit ed3cce84bc
+1 -1
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