* ignore errors that may or may not occur during the prerem/postinst scripts if you're installing filebot using the .deb packages

This commit is contained in:
Reinhard Pointner 2014-04-30 17:55:19 +00:00
parent 1329f490b2
commit b777a8ea54
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
# create /bin symlink
ln -s /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
ln -s -f /usr/share/filebot/bin/filebot.sh /usr/bin/filebot

View File

@ -1,4 +1,4 @@
#!/bin/sh
# remove /bin symlink
rm /usr/bin/filebot
rm -f /usr/bin/filebot

View File

@ -1,4 +1,4 @@
#!/bin/sh
# create /bin symlink
ln -s /opt/share/filebot/bin/filebot.sh /opt/bin/filebot
ln -s -f /opt/share/filebot/bin/filebot.sh /opt/bin/filebot

View File

@ -1,4 +1,4 @@
#!/bin/sh
# remove /bin symlink
rm /opt/bin/filebot
rm -f /opt/bin/filebot