Skip to content

Commit aea7854

Browse files
committed
fix - forge generated projects should use the local-maven repo to ensure they pull the correct code
1 parent 4237103 commit aea7854

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

grails-forge/grails-forge-cli/src/test/groovy/org/grails/forge/cli/CommandSpec.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ class CommandSpec extends Specification {
7070
String[] args = builder.toString().split(' ')
7171
ProcessBuilder pb = new ProcessBuilder(args)
7272
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)
7374
process = pb.directory(dir).start()
7475
process.consumeProcessOutputStream(output)
7576
process

0 commit comments

Comments
 (0)