vm-sdk

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

commit c1acb3a22a4fd6ae66801f224409b6ef0f04f10b
parent 6fb3c8d2a99fb96dee39240d162d611f7ea74044
Author: parazyd <parazyd@dyne.org>
Date:   Wed,  7 Feb 2018 09:06:38 +0100

Add maemo blend to the blend_map.

Diffstat:
Msdk | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sdk b/sdk @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -# Copyright (c) 2016-2017 Dyne.org Foundation +# Copyright (c) 2016-2018 Dyne.org Foundation # vm-sdk is written and maintained by Ivan J. <parazyd@dyne.org> # # This file is part of vm-sdk @@ -56,6 +56,7 @@ load() { blend_map=( "decode" "$R/../decode.blend" + "maemo" "$R/../maemo.blend" ) oslib="${os_map[$os]}" @@ -70,9 +71,10 @@ load() { } [[ -f $oslib ]] || { die "no valid distro specified"; exit 1 } - [[ -f $blendlib ]] || { warn "no valid blend specified" } + [[ -f $blendlib ]] || { act "no valid blend specified" } source $oslib + [[ -f $blendlib ]] && { source $blendlib || zerr act "$os blend loaded"