diff options
Diffstat (limited to 'script/vendor')
| -rwxr-xr-x | script/vendor/download | 6 | ||||
| -rwxr-xr-x | script/vendor/inject | 6 | 
2 files changed, 8 insertions, 4 deletions
| diff --git a/script/vendor/download b/script/vendor/download index 12231b39..4613c2b6 100755 --- a/script/vendor/download +++ b/script/vendor/download @@ -140,8 +140,10 @@ vendor_checksum()  mkdirs()  { -	[ -f "${1}" ] && \ -		printf "mkdirs ${1} ${2}: already downloaded\n" 1>&2 && return 1 +	if [ -f "${1}" ]; then +		printf "mkdirs ${1} ${2}: already downloaded\n" 1>&2 +		return 1 +	fi  	mkdir -p "${1%/*}" || err "mkdirs: !mkdir -p ${1%/*}"  	x_ rm -Rf "${appdir}"  	x_ mkdir -p "${appdir}/" diff --git a/script/vendor/inject b/script/vendor/inject index 93017cec..088851ca 100755 --- a/script/vendor/inject +++ b/script/vendor/inject @@ -14,8 +14,10 @@ eval "$(setvars "" archive rom modifygbe nukemode release new_mac)"  main()  {  	[ $# -lt 1 ] && err "No options specified." -	[ "${1}" = "listboards" ] && \ -		items config/coreboot && exit 0 +	if [ "${1}" = "listboards" ]; then +		items config/coreboot || : +		exit 0 +	fi  	archive="${1}" | 
