From 84452b4abae9aa72ef6a7755b2a2777444ac89b8 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Sun, 20 Mar 2022 03:01:32 +0100 Subject: [PATCH] Ancora tentativi di correzione della build. --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 6ff1393..7d93f73 100644 --- a/build.py +++ b/build.py @@ -42,7 +42,7 @@ class Build(object): for archive in self.__tarballs__: # If the archive is already there, do not do anything. if os.path.exists(os.path.join(self.__downloaddir__, archive)): - print("Archive %s is already there! Sweet") + print("Archive %s is already there! Sweet" % archive) continue # Download the archive @@ -124,7 +124,7 @@ class Build(object): bindir=os.path.join(self.appimagedir, 'usr', 'bin') os.makedirs(bindir, exist_ok = True) - subprocess.run("find ../../opt -iname soffice -path '*programm*' -exec ln -sf {} %s \;" % binaryname, shell=True, cwd=bindir) + subprocess.run("find ../../opt -iname soffice -path '*programm*' -exec ln -sf {} ./%s \;" % binaryname, shell=True, cwd=bindir) # Download AppRun from github apprunurl = "https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-{arch}".format(arch = self.__arch__)