mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-25 17:28:51 -05:00
10 lines
170 B
Bash
10 lines
170 B
Bash
#!/bin/sh
|
|
|
|
# allow read/write in application home folder
|
|
mkdir -m 777 "$SYNOPKG_PKGDEST/data"
|
|
chown -R admin.users "$SYNOPKG_PKGDEST/data"
|
|
|
|
|
|
# return successfully
|
|
exit 0
|