fix envvar

This commit is contained in:
Marco Carrozzo
2023-01-20 14:45:48 +01:00
parent 730ff7a138
commit a58c80918d
@@ -44,7 +44,7 @@ runs:
set +e; aws s3 ls $REMOTE_FILE_PATH > /dev/null; set -e
if [ $? -eq 0 ]; then
echo "downloading persistent cache artifacts from $REMOTE_FILE_PATH"
aws s3 cp --no-progress REMOTE_FILE_PATH $i.tar.gz
aws s3 cp --no-progress $REMOTE_FILE_PATH $i.tar.gz
echo "package $i size: $(du -h $i.tar.gz)"
tar xzf $i.tar.gz
else