Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation: tmpDir, outdir should use doubles quotes #10

Closed
mpscheidt opened this issue Jun 19, 2018 · 1 comment
Closed

Documentation: tmpDir, outdir should use doubles quotes #10

mpscheidt opened this issue Jun 19, 2018 · 1 comment

Comments

@mpscheidt
Copy link

There is an error in the documentation:

tmpDir = file('${project.buildDir}/jasperreports')
outDir = file('${project.buildDir}/classes/main')

This will create a directory called ${project.buildDir} in the project's main dir.

Example should use double quotes to specify tmpDir and outDir, in order to support String interpolation, replacing ${project.buildDir} with its value:

tmpDir = file("${project.buildDir}/jasperreports")
outDir = file("${project.buildDir}/classes/main")

@gmazelier
Copy link
Owner

Fixed by 3652cf7.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants