We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4237103 commit aea7854Copy full SHA for aea7854
grails-forge/grails-forge-cli/src/test/groovy/org/grails/forge/cli/CommandSpec.groovy
@@ -70,6 +70,7 @@ class CommandSpec extends Specification {
70
String[] args = builder.toString().split(' ')
71
ProcessBuilder pb = new ProcessBuilder(args)
72
pb.environment().put('JAVA_HOME', System.getenv('JAVA_HOME') ?: System.getProperty('java.home'))
73
+ pb.environment().put('GRAILS_REPO_URL', System.getenv('GRAILS_REPO_URL') ?: null)
74
process = pb.directory(dir).start()
75
process.consumeProcessOutputStream(output)
76
process
0 commit comments