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
parent
c202dc612e
commit
74ae84afba
|
@ -133,7 +133,7 @@ mkdirs()
|
||||||
remkdir "$appdir"
|
remkdir "$appdir"
|
||||||
extract_archive "$_dl" "$appdir" || \
|
extract_archive "$_dl" "$appdir" || \
|
||||||
[ "$2" = "extract_e6400vga" ] || \
|
[ "$2" = "extract_e6400vga" ] || \
|
||||||
$err "mkdirs $1 $2: !extract"
|
$err "mkdirs $1 $2: !extract"; return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
extract_intel_me()
|
extract_intel_me()
|
||||||
|
|
Loading…
Reference in New Issue