Skip to content
Snippets Groups Projects
Commit bd517a3d authored by Libreboot project's avatar Libreboot project Committed by Leah Rowe
Browse files

rom.sh: don't dry-run mkcoreboottar


same as the last change. make the main function a wrapper
that dry-runs the real function.

if the "dry" variable is blank, it executes.

Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 64e99021
Branches
Tags
No related merge requests found
......@@ -174,6 +174,11 @@ cprom()
}
mkcoreboottar()
{
$dry realmkcoreboottar
}
realmkcoreboottar()
{
[ "$target" = "$tree" ] && return 0; [ "$XBMK_RELEASE" = "y" ] && \
[ "$release" != "n" ] && $dry mkrom_tarball "bin/$target"; return 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment