mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-26 01:38:57 -05:00
11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# allow read/write in application home folder
|
||
|
chown -R admin.users "$SYNOPKG_PKGDEST"
|
||
|
|
||
|
# create /bin symlink
|
||
|
ln -s -f "$SYNOPKG_PKGDEST/filebot.sh" /usr/syno/bin/filebot
|
||
|
|
||
|
# end
|
||
|
exit 0
|