Skip to content

Commit

Permalink
fix node path
Browse files Browse the repository at this point in the history
  • Loading branch information
skovati committed Aug 8, 2023
1 parent 3775cd7 commit f07cecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion merlin-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ test {
}

// Add node bin directory to PATH, helps CI/CD services without node installed
environment 'NODE_PATH', nodeSetup.nodeDir.get().toString().concat("/bin/node")
environment 'NODE_PATH', node.computedNodeDir.get().toString().concat("/bin/node")

environment "CONSTRAINTS_DSL_COMPILER_ROOT", projectDir.toPath().resolve('constraints-dsl-compiler')
environment "CONSTRAINTS_DSL_COMPILER_COMMAND", './build/main.js'
Expand Down
2 changes: 1 addition & 1 deletion scheduler-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ test {
}

// Add node bin directory to PATH, helps CI/CD services without node installed
environment 'NODE_PATH', nodeSetup.nodeDir.get().toString().concat("/bin/node")
environment 'NODE_PATH', node.computedNodeDir.get().toString().concat("/bin/node")

environment "SCHEDULING_DSL_COMPILER_ROOT", projectDir.toPath().resolve('scheduling-dsl-compiler')
environment "SCHEDULING_DSL_COMPILER_COMMAND", './build/main.js'
Expand Down

0 comments on commit f07cecc

Please sign in to comment.