We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944abd6 commit afd1564Copy full SHA for afd1564
AppImageUpdate.AppDir/AppRun
@@ -1,7 +1,8 @@
1
#!/bin/bash
2
3
HERE="$(dirname "$(readlink -f "${0}")")"
4
-
+cd "${HERE}/usr/"
5
export LD_LIBRARY_PATH="${HERE}/usr/lib/:${LD_LIBRARY_PATH}"
6
export PATH="${HERE}/usr/bin:${PATH}"
7
exec "${HERE}/usr/bin/appimageupdate" "$@"
8
+cd -
appimageupdategui/main.vala
@@ -28,11 +28,11 @@ static void on_open_clicked() {
28
if (file_chooser.run () == ResponseType.ACCEPT) {
29
open_file(file_chooser.get_filename ());
30
}
31
32
- print("FOOOOOOOOO");
33
- window_main.destroy();
34
- file_chooser.destroy();
35
- Posix.exit(0);
+ else {
+ Posix.exit(0);
+ }
+ window_main.destroy();
+ file_chooser.destroy();
36
37
38
/* Handle about click event */
0 commit comments