diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-28 14:56:30 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-28 14:56:30 +0100 |
commit | 359d00bd5614d840fa6c75efc111604819bfbfd5 (patch) | |
tree | 01a99962cb999e526eb80ee4029a3780971af0e0 /script/roms | |
parent | 3f540e756596580a6f003d3ce375e4e64bfab9d4 (diff) |
roms: add return value for the list command
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/roms')
-rwxr-xr-x | script/roms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/roms b/script/roms index 7e032ed0..12f9e1c1 100755 --- a/script/roms +++ b/script/roms @@ -40,7 +40,7 @@ main() eval "x_ ./update trees -f \"\${${2}src##*/}\"" ser="$2" && shift 2 && continue fi - [ "$1$ser" = "list" ] && x_ ls -1 config/coreboot && return + [ "$1$ser" = "list" ] && x_ ls -1 config/coreboot && return 0 [ "$1" = "all" ] && shift && continue boards="$1 $boards"; shift 1 done |