Browse Source

Merge pull request #1660 from zane-techempower/fix-duda

Update duda install to not depend on http://duda.io
Mike Smith 10 years ago
parent
commit
fc8d132318
2 changed files with 3 additions and 4 deletions
  1. 2 3
      frameworks/C/duda/install.sh
  2. 1 1
      frameworks/C/duda/setup.sh

+ 2 - 3
frameworks/C/duda/install.sh

@@ -3,10 +3,9 @@
 RETCODE=$(fw_exists ${IROOT}/duda-0.23.installed)
 [ ! "$RETCODE" == 0 ] || { return 0; }
 
-fw_get http://duda.io/releases/duda-client/dudac-0.23.tar.gz -O dudac-0.23.tar.gz
-fw_untar dudac-0.23.tar.gz
+git clone https://github.com/monkey/dudac.git
 
-cd dudac-0.23
+cd dudac/
 
 ./dudac -r
 ./dudac -s

+ 1 - 1
frameworks/C/duda/setup.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-export DUDA_HOME=${IROOT}/dudac-0.23
+export DUDA_HOME=${IROOT}/dudac
 export PATH=${DUDA_HOME}:$PATH
 
 dudac -w $TROOT/webservice -p 2001 &