mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 14:25:02 -05:00
* 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:
parent
1329f490b2
commit
b777a8ea54
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# create /bin symlink
|
# 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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# remove /bin symlink
|
# remove /bin symlink
|
||||||
rm /usr/bin/filebot
|
rm -f /usr/bin/filebot
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# create /bin symlink
|
# 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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# remove /bin symlink
|
# remove /bin symlink
|
||||||
rm /opt/bin/filebot
|
rm -f /opt/bin/filebot
|
||||||
|
Loading…
Reference in New Issue
Block a user