mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-07 18:05:04 -05:00
12 lines
281 B
Bash
12 lines
281 B
Bash
#!/bin/sh
|
|
|
|
# allow read/write in application home folder
|
|
mkdir -m 777 "$SYNOPKG_PKGDEST/data"
|
|
chown -R admin.users "$SYNOPKG_PKGDEST/data"
|
|
|
|
# create /usr/local/[package] link
|
|
ln -s "/var/packages/$SYNOPKG_PKGNAME/target" "/usr/local/$SYNOPKG_PKGNAME"
|
|
|
|
# return successfully
|
|
exit 0
|