From e51cf40b767d189a3ab567f9a903ba5a79216066 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Sun, 20 Mar 2022 00:24:35 +0100 Subject: [PATCH] Non faccio rimuovere la cartella per ulteriori controlli. --- build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index 64f9970..741c29f 100644 --- a/build.py +++ b/build.py @@ -97,8 +97,8 @@ class Build(object): os.chmod('AppRun', 0o755) os.chdir(os.path.join(self.__builddir__, self.__appname__)) - # Download appimagetool from probonopd repo on github - appimagetoolurl = "https://github.com/probonopd/AppImageKit/releases/download/continuous/appimagetool-{arch}.AppImage".format(arch = self.__arch__) + # Download appimagetool from github + appimagetoolurl = "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-{arch}.AppImage".format(arch = self.__arch__) urllib.request.urlretrieve(appimagetoolurl, 'appimagetool') os.chmod('appimagetool', 0o755) @@ -112,7 +112,7 @@ class Build(object): os.chdir('/tmp') def __del__(self): - del self.__builddir__ + #del self.__builddir__ if __name__ == '__main__':