From 29984163c328acf7c8f24cb103a4138b117ab390 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Sat, 19 Mar 2022 23:01:14 +0100 Subject: [PATCH] Correzioni ai find lanciati da interno python. --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index f0925c8..6293434 100644 --- a/build.py +++ b/build.py @@ -78,9 +78,9 @@ class Build(object): # At this point, let's decompress the deb packages os.chdir(os.path.join(self.__builddir__, self.__appname__, self.__appname__ + '.AppImage')) - subprocess.run("find .. -iname '*.deb' -exec dpkg -x {} . \+", shell=True) + subprocess.run("find .. -iname '*.deb' -exec dpkg -x {} . \;", shell=True) # Changing desktop file - subprocess.run("find . -iname startcenter.desktop -exec cp {} . \+", shell=True) + subprocess.run("find . -iname startcenter.desktop -exec cp {} . \;", shell=True) subprocess.run("sed -i -e 's|Name=.*|Name=%s|g' startcenter.desktop" % self.__appname__, shell=True) subprocess.run("find . -name startcenter.png -path '*hicolor*48x48*' -exec cp {} \;", shell=True)