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

experimental
Nehon 11 years ago
parent 7956e513e2
commit c171235b27
  1. 2
      build.gradle

@ -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
} }

Loading…
Cancel
Save