fixup! Fix check if $blend exists.

This commit is contained in:
parazyd 2018-10-11 11:04:48 +02:00
parent 19baba5ba2
commit 26a1348b58
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 1 additions and 1 deletions

2
sdk
View File

@ -65,7 +65,7 @@ load() {
blendlib="${blend_map[$blend]}"
if [[ -z "$blendlib" ]]; then
if [[ -z "$blendlib" ]] && [[ -n "$blend" ]]; then
if [[ "$blend" =~ '^http' ]]; then
notice "grabbing blend from the internetz"
dlpath="$R/extra/blends/$(basename $blend)"