Browse Source

Fix bug in resin installation script

This was causing a number of problems!
$ find . -name install.sh -exec grep resin {} \; -exec echo {} \;
fw_depends resin
./scalatra/install.sh
fw_depends java resin maven
./spark/install.sh
fw_depends java resin maven
./gemini/install.sh
fw_depends java resin maven
./tapestry/install.sh
fw_depends java resin maven
./servlet3-cass/install.sh
fw_depends resin java
./compojure/install.sh
fw_depends resin
./luminus/install.sh
fw_depends java resin maven
./ninja-resin/install.sh
fw_depends grails resin
./grails/install.sh
fw_depends java resin maven
./wicket/install.sh
fw_depends java resin maven
./servlet/install.sh
fw_depends java resin maven
./activeweb/install.sh
Hamilton Turner 11 years ago
parent
commit
c45bcc71af
1 changed files with 2 additions and 2 deletions
  1. 2 2
      toolset/setup/linux/webservers/resin.sh

+ 2 - 2
toolset/setup/linux/webservers/resin.sh

@@ -14,7 +14,7 @@ make
 make install
 
 mv conf/resin.properties conf/resin.properties.orig
-cat ../../config/resin.properties > conf/resin.properties
+cat $FWROOT/config/resin.properties > conf/resin.properties
 
 mv conf/resin.xml conf/resin.xml.orig
-cat ../../config/resin.xml > conf/resin.xml
+cat $FWROOT/config/resin.xml > conf/resin.xml