From 2752de9a000a43f7b09d5492c0c63cfa0a84a0c8 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 2 Apr 2014 16:20:43 +0000 Subject: [PATCH] * calling filebot -clear-cache in pre/post install causes issues cause it's run as root which then owns ~/.filebot which will break filebot for the actual user --- installer/deb/postinst.sh | 3 --- installer/deb/prerem.sh | 3 --- installer/ipkg/postinst.sh | 3 --- installer/ipkg/prerem.sh | 3 --- 4 files changed, 12 deletions(-) diff --git a/installer/deb/postinst.sh b/installer/deb/postinst.sh index da50019e..41b7ee06 100644 --- a/installer/deb/postinst.sh +++ b/installer/deb/postinst.sh @@ -2,6 +2,3 @@ # create /bin symlink ln -s /usr/share/filebot/bin/filebot.sh /usr/bin/filebot - -# delete caches and logs -filebot -clear-cache diff --git a/installer/deb/prerem.sh b/installer/deb/prerem.sh index 46d4e43f..71793752 100644 --- a/installer/deb/prerem.sh +++ b/installer/deb/prerem.sh @@ -1,7 +1,4 @@ #!/bin/sh -# delete caches and logs -filebot -clear-cache - # remove /bin symlink rm /usr/bin/filebot diff --git a/installer/ipkg/postinst.sh b/installer/ipkg/postinst.sh index ae3c3b1b..b742e8b5 100644 --- a/installer/ipkg/postinst.sh +++ b/installer/ipkg/postinst.sh @@ -2,6 +2,3 @@ # create /bin symlink ln -s /opt/share/filebot/bin/filebot.sh /opt/bin/filebot - -# delete caches and logs -filebot -clear-cache diff --git a/installer/ipkg/prerem.sh b/installer/ipkg/prerem.sh index 0fcd55aa..8f174d15 100644 --- a/installer/ipkg/prerem.sh +++ b/installer/ipkg/prerem.sh @@ -1,7 +1,4 @@ #!/bin/sh -# delete caches and logs -filebot -clear-cache - # remove /bin symlink rm /opt/bin/filebot