add link to dowse.blend

This commit is contained in:
parazyd 2016-10-31 09:54:40 +01:00
parent 171f7c4742
commit 76d3aa22dd
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
2 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit dd5d5d9d368854d9493941e39f61b471eccd5762
Subproject commit 1a8a2df8095072b3553fe09306bbf4db2ab7d6b3

6
sdk
View File

@ -91,17 +91,17 @@ load() {
)
blend_map=(
"dowse" "$R/extra/blends/dowse.blend"
"dowse" "https://github.com/dyne/dowse/raw/master/ops/dowse.blend"
)
boardlib="${board_map[$dev]}"
oslib="${os_map[$os]}"
blendlib="${blend_map[$blend]}"
[[ $blendlib =~ '^http\:' ]] && {
[[ $blendlib =~ '^http' ]] && {
notice "grabbing blend from the internetz"
pushd $R/extra/blends
curl -O $blendlib
curl -Ls $blendlib
popd
blendlib="$R/extra/blends/$(basename $blendlib)"
}