Skip to content

Commit

Permalink
fix issue #75: wrong default installerTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
siordache committed Aug 13, 2019
1 parent 4d5c793 commit 3376032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/groovy/org/beryx/jlink/impl/JPackageTaskImpl.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ class JPackageTaskImpl extends BaseTaskImpl<JPackageTaskData> {
if(OperatingSystem.current().windows) {
return ['exe', 'msi']
} else if(OperatingSystem.current().macOsX) {
return ['rpm', 'deb']
} else {
return ['pkg', 'dmg']
} else {
return ['rpm', 'deb']
}
}
}

0 comments on commit 3376032

Please sign in to comment.