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