1
0
Fork 0
mirror of https://github.com/ConnectedHumber/Air-Quality-Web synced 2025-03-19 23:14:57 +00:00

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

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