Skip to content

Commit

Permalink
Remove spaces from project name
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Mar 22, 2019
1 parent 90488d4 commit 38d3d31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
}

task buildExtension (type: Zip, overwrite: true) {
baseName "${project.name}".replace(' ', '_') + "-${project.version}-${getGitHash()}"
baseName "${project.name}-${project.version}-${getGitHash()}".replace(' ', '_')
extension 'zip'
destinationDir DISTRIBUTION_DIR
version ''
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "Switch Loader"
rootProject.name = "SwitchLoader"

0 comments on commit 38d3d31

Please sign in to comment.