diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-15 20:22:26 -0600 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-15 20:22:26 -0600 |
commit | 2e0f2a2659c1e33ff1b20e8cf145f266c28a5ce9 (patch) | |
tree | b5733d428001f5e968c0d8134bdc2ac6f9277bfb /app | |
parent | bc65a6a44c5f54f65b559731b2a69894b6badf13 (diff) | |
download | ServerCraft-2e0f2a2659c1e33ff1b20e8cf145f266c28a5ce9.tar ServerCraft-2e0f2a2659c1e33ff1b20e8cf145f266c28a5ce9.tar.gz ServerCraft-2e0f2a2659c1e33ff1b20e8cf145f266c28a5ce9.tar.bz2 |
fixed file errors
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index dec3174..215c4be 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 |