Skip to content

Commit

Permalink
change module name to work around macOS limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
ccavanaugh committed Mar 11, 2019
1 parent 8d4abb3 commit 0d10f15
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ task distZip {
doLast {
ant.zip(destfile: "jgnash-" + version + "-bin.zip", duplicate: "preserve", update: "false") {
zipgroupfileset(dir: ".", includes: "jgnash-fx/build/distributions/jGnashFx-" + version + ".zip")
zipgroupfileset(dir: ".", includes: "jgnash/build/distributions/jGnash-" + version + ".zip")
zipgroupfileset(dir: ".", includes: "bootloader/build/distributions/jGnash-" + version + ".zip")
}
}
}

distZip.dependsOn(":jgnash-fx:distZip")
distZip.dependsOn(":jgnash:distZip")
distZip.dependsOn(":bootloader:distZip")
2 changes: 1 addition & 1 deletion jGnash
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env sh

./bin/jgnash "$@"
./bin/bootloader "$@"
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rootProject.name = "jgnash"

include ":jgnash"
include ":bootloader"
include ":jgnash-bayes"
include ":jgnash-help"
include ":jgnash-resources"
Expand All @@ -13,7 +13,7 @@ include ":jgnash-fx-test-plugin"

include ":mt940"

project(":jgnash").projectDir = "$rootDir/jgnash" as File
project(":bootloader").projectDir = "$rootDir/bootloader" as File
project(":jgnash-bayes").projectDir = "$rootDir/jgnash-bayes" as File
project(":jgnash-help").projectDir = "$rootDir/jgnash-help" as File
project(":jgnash-resources").projectDir = "$rootDir/jgnash-resources" as File
Expand Down

0 comments on commit 0d10f15

Please sign in to comment.