Skip to content

Commit 7b8c62d

Browse files
committed
feat: fixed appimage url, fixed appimage script, refactoring
1 parent 4c2d3ab commit 7b8c62d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.AppImage/createAppImage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
2+
wget "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage"
33
chmod a+x appimagetool-x86_64.AppImage
44
BASEDIR=$(dirname "$0")
55
PARENT_DIR="$(dirname "$BASEDIR")"

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ tasks.register('AppImage') {
109109
from '.AppImage/.AppDir/Opal.png'
110110
into layout.buildDirectory.dir("AppImage/Opal.AppDir/usr/lib")
111111
}
112-
providers.exec {
112+
def appCreate = providers.exec {
113113
commandLine 'sh', "${project.rootDir}/.AppImage/createAppImage.sh", "${project.version.toString()}"
114114
}
115+
println(appCreate.standardOutput.asText.get().toString())
115116
delete layout.buildDirectory.dir("AppImage/Opal.AppDir")
116117
}
117118
}

src/main/java/module-info.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module Opal {
2-
requires java.base;
32
requires java.net.http;
43
requires javafx.controls;
54
requires javafx.fxml;

0 commit comments

Comments
 (0)