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