fixed file errors
This commit is contained in:
parent
bc65a6a44c
commit
2e0f2a2659
1 changed files with 5 additions and 5 deletions
|
@ -81,19 +81,19 @@ task pack(type: io.github.fvarrui.javapackager.gradle.PackageTask, dependsOn: bu
|
|||
administratorRequired = false
|
||||
|
||||
linuxConfig {
|
||||
pngFile = 'file:app/src/main/resources/icon.png'
|
||||
pngFile = file('app/src/main/resources/icon.png')
|
||||
}
|
||||
|
||||
macConfig {
|
||||
icnsFile = app/src/main/resources/icon.icns
|
||||
volumeIcon = 'app/src/main/resources/icon.icns'
|
||||
backgroundImage = 'app/src/main/resources/dmg.png'
|
||||
icnsFile = file('app/src/main/resources/icon.icns')
|
||||
volumeIcon = file('app/src/main/resources/icon.icns')
|
||||
backgroundImage = file('app/src/main/resources/dmg.png')
|
||||
developerId = 'Bryson Steck'
|
||||
appId = 'xyz.brysonsteck.ServerCraft'
|
||||
}
|
||||
|
||||
winConfig {
|
||||
icoFile = app/src/main/resources/icon.ico
|
||||
icoFile = file('app/src/main/resources/icon.ico')
|
||||
setupMode = 'askTheUser'
|
||||
disableDirPage = false
|
||||
disableFinishedPage = false
|
||||
|
|
Loading…
Add table
Reference in a new issue