1
0
Fork 0

Non faccio rimuovere la cartella per ulteriori controlli.

This commit is contained in:
Emiliano Vavassori 2022-03-20 00:24:35 +01:00
parent e837dd600e
commit e51cf40b76
1 changed files with 3 additions and 3 deletions

View File

@ -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__':