Skip to content

Commit

Permalink
fix in installApp gradle task. missing separator in dest dir
Browse files Browse the repository at this point in the history
  • Loading branch information
dsklyut committed Jul 19, 2012
1 parent 0e2e089 commit 442c2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -186,7 +186,7 @@ task installApp(type: Sync, dependsOn: ['assemble']) {
group = 'vert.x'
description 'Install a local copy of this build'

def vertxTemp = file(System.getProperty('java.io.tmpdir') + "vertx-$version")
def vertxTemp = file(System.getProperty('java.io.tmpdir') + "/vertx-$version")

destinationDir vertxTemp
inputs.files files("build/$rootProject.name-$version")
Expand Down

0 comments on commit 442c2d4

Please sign in to comment.