From 1b6e9d4be1240500588eb0f329a557087e372402 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 23 Jan 2015 21:10:41 -0700 Subject: [PATCH 1/3] Update deardesi.js --- bin/deardesi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/deardesi.js b/bin/deardesi.js index 9975787..b38a940 100755 --- a/bin/deardesi.js +++ b/bin/deardesi.js @@ -68,7 +68,7 @@ function init() { // Desi.registerRenderer( 'js' - , require('desirae/lib/render-core').DesiraeRenderCss + , require('desirae/lib/render-core').DesiraeRenderJs , { themes: true, assets: true } ); Desi.registerRenderer( From 11153b8191687ddecb1c6bfcd17bb37d6983a9da Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 24 Jan 2015 15:24:13 -0700 Subject: [PATCH 2/3] Update setup.sh --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 0260e78..06d3c97 100644 --- a/setup.sh +++ b/setup.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [ -n "" ]; then +if [ -n "$(which curl)" ]; then CMD_CURL="curl -fsSL" elif [ -n "$(which wget)" ]; then CMD_CURL="wget -nv --quiet --no-verbose -O -" From a0dadc19da8765e7fd2c40f03016cb8183ee09b8 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 24 Jan 2015 15:26:48 -0700 Subject: [PATCH 3/3] Update setup.sh --- setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.sh b/setup.sh index 06d3c97..7a5f6e9 100644 --- a/setup.sh +++ b/setup.sh @@ -4,6 +4,9 @@ if [ -n "$(which curl)" ]; then CMD_CURL="curl -fsSL" elif [ -n "$(which wget)" ]; then CMD_CURL="wget -nv --quiet --no-verbose -O -" +else + echo "Couldn't find 'curl' or 'wget' (that's weird), could not continue." + exit 1 fi echo ""