Skip to content

Commit

Permalink
fix: azcopy command tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
kirenotneb committed Nov 8, 2024
1 parent ae654f0 commit 9f89ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/datasets/[datasetid]/access/request/[requestid].vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const isExpired = request.status === "EXPIRED";
const userKey = user?.email.replace(/[^a-zA-Z0-9]/g, "");
const requestSasUri = request.download_uri;
const azcopyCommand = `azcopy copy '${requestSasUri}' 'C:\\local\\path' --recursive=true`;
const azcopyCommand = `azcopy copy "${requestSasUri}" "C:\\local\\path" --recursive=true`;
const copyToClipboard = (text: string = "") => {
navigator.clipboard.writeText(text);
Expand Down

0 comments on commit 9f89ccc

Please sign in to comment.