aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'worker_modules/unpack.sh')
-rw-r--r--worker_modules/unpack.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/worker_modules/unpack.sh b/worker_modules/unpack.sh
index b0a03fc..2706bc5 100644
--- a/worker_modules/unpack.sh
+++ b/worker_modules/unpack.sh
@@ -21,6 +21,6 @@ _unpack_main() {
mkdir -p "${UNPACK_DIR}" || die "Failed to create '${UNPACK_DIR}'!"
fi
- tar -xaf "${UNPACK_FILE}" --directory "${UNPACK_DIR}" \
+ "${TAR_COMMAND}" -xaf "${UNPACK_FILE}" --directory "${UNPACK_DIR}" \
|| die "Failed to unpack '${UNPACK_FILE}' to '${UNPACK_DIR}'!"
}