diff options
| author | Leah Rowe <leah@libreboot.org> | 2024-06-08 01:59:46 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2024-06-08 01:59:46 +0100 | 
| commit | 74ae84afba74994e3a854d189d9e7226f7e4187c (patch) | |
| tree | 5f36b6b38c7baaf621835dfaee602538d8e67eb1 | |
| parent | c202dc612e76aa5850bc9e8000832e7085b84840 (diff) | |
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>
| -rwxr-xr-x | include/vendor.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/vendor.sh b/include/vendor.sh index f4dba0a1..4a0e7ae6 100755 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -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() | 
