Update all core nodes to use NODE_RED_HOME rather than relative paths

This commit is contained in:
Nicholas O'Leary
2013-11-14 15:44:54 +00:00
parent 82b863805d
commit affcc8ae65
30 changed files with 32 additions and 32 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
**/
var RED = require("../../red/red");
var RED = require(process.env.NODE_RED_HOME+"/red/red");
var operators = {
'eq':function(a,b) { return a == b; },