Changed the build so that the produced zip has a valid path

This commit is contained in:
Nehon 2014-06-19 07:35:13 +02:00
parent 7956e513e2
commit c171235b27

View File

@ -60,7 +60,7 @@ task libDist(dependsOn: subprojects.build) << {
task createZipDistribution(type:Zip,dependsOn:"dist", description:"Package the nightly zip distribution"){ task createZipDistribution(type:Zip,dependsOn:"dist", description:"Package the nightly zip distribution"){
archiveName "jME"+jmeVersion+"_"+jmeVersionTag+"_"+new Date().format("yyyy-MM-dd")+".zip" archiveName "jME"+jmeVersion+"_"+jmeVersionTag+"_"+new Date().format("yyyy-MM-dd")+".zip"
from {"./dist"} from {"./dist"}
into(".") into("/")
println archiveName println archiveName
} }