build: Dereference when unpacking for deployment

This commit is contained in:
Starbeamrainbowlabs 2019-04-12 23:36:48 +01:00
parent 58c7914568
commit 356410620a
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

2
build
View File

@ -312,7 +312,7 @@ task_deploy() {
subtask_end $? "Error: Failed to create temporary directory";
subtask_begin "Unpacking release files";
execute tar -xf "${ARCHIVE}/Air-Quality-Web.tar.gz" -C "${temp_dir}";
execute tar -hxf "${ARCHIVE}/Air-Quality-Web.tar.gz" -C "${temp_dir}";
subtask_end $? "Failed to unpack release files";
rm -r "${temp_dir}/data"; # Delete the default data directory - there's one on the server already
# Define the directory whose contents we want to upload