Merged in clint-runnodesmodefix (pull request #527)

Set filemode for run scripts to the correct value
This commit is contained in:
Clinton Alexander 2016-11-22 16:31:01 +00:00
commit 45d54bec39
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ buildscript {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'net.corda.plugins:publish-utils:0.5'
classpath 'net.corda.plugins:quasar-utils:0.5.1'
classpath 'net.corda.plugins:cordformation:0.5.2'
classpath 'net.corda.plugins:cordformation:0.5.3'
// Can run 'gradle dependencyUpdates' to find new versions of things.
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'

View File

@ -71,6 +71,7 @@ class Cordform extends DefaultTask {
filter { String line -> line.replace("JAR_NAME", Node.JAR_NAME) }
// Replaces end of line with lf to avoid issues with the bash interpreter and Windows style line endings.
filter(FixCrLfFilter.class, eol: FixCrLfFilter.CrLf.newInstance("lf"))
fileMode 0755
into "${directory}/"
}
}