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__)