From 35b5a7602b6cc49fd2432c8410cf74f5713dca5b Mon Sep 17 00:00:00 2001
From: cgeek <cem.moreau@gmail.com>
Date: Fri, 27 Nov 2015 19:35:22 +0100
Subject: [PATCH] Fix #234 Node.js v0.12 is not available

---
 ucoin | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ucoin b/ucoin
index 28e1d7550..660695f03 100755
--- a/ucoin
+++ b/ucoin
@@ -6,7 +6,7 @@ if [[ -d ./node ]]; then
   NODE=./node/bin/node
 fi;
 
-VERSION=`node -v`
+VERSION=`$NODE -v`
 
 if [[ $VERSION != v0.12* ]]; then
   echo "Node.js v0.12 is not available";
-- 
GitLab