Skip to content

Commit

Permalink
@build fix zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume ALVAREZ committed Apr 17, 2020
1 parent ec5f229 commit e253867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To create an zip with embedded game:
* checkout github repository
* execute `gradlew.bat desktop:runtimeZip` (windows)
* execute `gradlew desktop:runtimeZip` (linux/cygwin)
* zip is built in directory `desktop/build/TheShapeOfThingsThatWere.zip`
* zip is built in directory `desktop/build/ShapeOfThingsThatWere.zip`
* a ``start.sh`` script is embedded to start it

To start the game in Eclipse:
Expand Down
4 changes: 2 additions & 2 deletions desktop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dist.dependsOn classes

application {
mainClassName = project.mainClassName
applicationName = 'TheShapeOfThingsThatWere'
applicationName = 'ShapeOfThingsThatWere'
applicationDefaultJvmArgs = [ ]
}

Expand All @@ -43,7 +43,7 @@ runtime {
'--no-man-pages',
'--add-modules=jdk.unsupported' // required by lwjgl for sun.misc.Unsafe
]
imageZip = file("$buildDir/TheShapeOfThingsThatWere.zip")
imageZip = file("$buildDir/ShapeOfThingsThatWere.zip")
}

tasks.runtime.doLast {
Expand Down

0 comments on commit e253867

Please sign in to comment.