diff options
| author | Leah Rowe <leah@libreboot.org> | 2024-05-15 01:23:22 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2024-05-15 01:27:45 +0100 | 
| commit | 189b70ddcb2c7b69a93b3b74b801ba588ccb60ef (patch) | |
| tree | 65caee45e6e1374070223ddbe475397876e7a9a5 /script | |
| parent | 36d45474c0ddde8da030f8a482829c9379b8097a (diff) | |
build/roms: create full release tarball name
set relname from option.sh under check_project()
now the release logic simply has to move a directory
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
| -rwxr-xr-x | script/roms | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/script/roms b/script/roms index 2908dc3a..2d07fa44 100755 --- a/script/roms +++ b/script/roms @@ -160,7 +160,8 @@ handle_coreboot_target()  	[ -d "bin/${board}" ] || return 0  	[ "$lbmk_release" = "y" ] || targets="* bin/${board}\n${targets}" -	[ "$lbmk_release" = "y" ] && targets="* bin/$board.tar.xz\n$targets" +	[ "$lbmk_release" = "y" ] && \ +		targets="* bin/${relname}_$board.tar.xz\n$targets"  	[ "$lbmk_release" = "y" ] && mktar_release "bin/$board"; return 0  } | 
