1
0
Fork 0

Trovato e risolto problema di build.

This commit is contained in:
Emiliano Vavassori 2022-03-20 03:14:56 +01:00
parent 84452b4aba
commit 0fcae9c164
1 changed files with 1 additions and 1 deletions

View File

@ -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 '*program*' -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__)