Skip to content

Commit

Permalink
fix: remove quotes to glob
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy committed Aug 12, 2024
1 parent 621621a commit b6f8af7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ sync_test_data_azure () {
# So we need to move them all up two levels to the current directory
az storage blob download-batch -d . --account-name "$AZURE_STORAGE_ACCOUNT" -s "$azure_storage_container_name" --pattern "tests/$test_run_id/*"
local tmpdir="$(mktemp -d)"
mv "tests/$test_run_id/*" $tmpdir
mv tests/$test_run_id/* $tmpdir
rm -rf "tests/$test_run_id"
mv "$tmpdir/*" .
}
Expand Down

0 comments on commit b6f8af7

Please sign in to comment.