mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/sh
|
|
|
|
# export user data
|
|
DATA_TAR="/tmp/$SYNOPKG_PKGNAME.data.tgz"
|
|
|
|
cd "$SYNOPKG_PKGDEST" && tar -cvzf "$DATA_TAR" "data/"
|
|
|
|
exit 0
|