diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-29 03:09:03 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-29 03:09:03 +0100 |
commit | 42925ce79fb31699256cc924ba359e0f6c37e713 (patch) | |
tree | b2282e7bb326394c05d1a026b96b7d29e886924d /include | |
parent | ddcc74777e0e2e9f00cad7c7e5f8868f0e52a6e5 (diff) |
vendor.sh extract_kbc1126: use quote on file check
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-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 33133f56..49de3df9 100755 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -154,7 +154,7 @@ extract_kbc1126ec() ( x_ cd "$appdir/" mv Rompaq/68*.BIN ec.bin || : - if [ ! -f ec.bin ]; then + if [ ! -f "ec.bin" ]; then unar -D ROM.CAB Rom.bin || unar -D Rom.CAB Rom.bin || \ unar -D 68*.CAB Rom.bin || $err "can't extract Rom.bin" x_ mv Rom.bin ec.bin |