Skip to content
Snippets Groups Projects
Commit 67b0afad authored by Ernesto Corbellini's avatar Ernesto Corbellini
Browse files

Fixed symlink overwrite in deployApp.

parent 607ecad3
No related branches found
No related tags found
No related merge requests found
......@@ -47,5 +47,5 @@ task deployApp(dependsOn: 'installApp') << {
File link = new File(binDir,"execute")
File target = new File(project.projectDir, "build/install/$project.name/bin/$project.name")
println "Creating symlink from $link.absolutePath to $target.absolutePath"
ant.symlink(link: link.absolutePath, resource: target.absolutePath)
ant.symlink(link: link.absolutePath, resource: target.absolutePath, overwrite: true)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment