vm-sdk

simple distro kit (vm edition)
git clone git://parazyd.org/vm-sdk.git
Log | Files | Refs | Submodules | README | LICENSE

commit 26a1348b58dbd40f1ba63483ac87ce81fdedff57
parent 19baba5ba2a025feacc1a2586856df0cda083b45
Author: parazyd <parazyd@dyne.org>
Date:   Thu, 11 Oct 2018 11:04:48 +0200

fixup! Fix check if $blend exists.

Diffstat:
Msdk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk b/sdk @@ -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)"