vendor.sh: add a return at the end of mkdirs

i don't like that it's not there, because of the quirks
in sh behaviour. put it there to put my mind at ease.

otherwise, this doesn't change any behaviour.

Signed-off-by: Leah Rowe <leah@libreboot.org>
20240612_branch
Leah Rowe 2024-06-08 01:59:46 +01:00
parent c202dc612e
commit 74ae84afba
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ mkdirs()
remkdir "$appdir"
extract_archive "$_dl" "$appdir" || \
[ "$2" = "extract_e6400vga" ] || \
$err "mkdirs $1 $2: !extract"
$err "mkdirs $1 $2: !extract"; return 0
}
extract_intel_me()