Add maemo blend to the blend_map.

This commit is contained in:
parazyd 2018-02-07 09:06:38 +01:00
parent 6fb3c8d2a9
commit c1acb3a22a
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 4 additions and 2 deletions

6
sdk
View File

@ -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"