diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-11-01 10:34:05 +0000 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-11-01 16:36:16 +0000 | 
| commit | 1f1498be7421ae4500ad0d6d40ca0eefbcf8f1a2 (patch) | |
| tree | 6dec94c650526e5f2e345a5c15aef94825ff50f0 /script/vendor/inject | |
| parent | 82bd87fa160a4f37136ad04a33091b08eb48d829 (diff) | |
Libreboot 2023110120231101
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/vendor/inject')
| -rwxr-xr-x | script/vendor/inject | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/script/vendor/inject b/script/vendor/inject index db8004e4..93017cec 100755 --- a/script/vendor/inject +++ b/script/vendor/inject @@ -39,7 +39,9 @@ main()  check_board()  { -	if ! check_release "${archive}" ; then +	failcheck="n" +	check_release "${archive}" || failcheck="y" +	if [ "${failcheck}" = "y" ]; then  		[ -f "${rom}" ] || \  			err "check_board: \"${rom}\" is not a valid path"  		[ -z "${rom+x}" ] && \  | 
