Skip to content

Commit

Permalink
Fix destination
Browse files Browse the repository at this point in the history
  • Loading branch information
adreed-msft committed May 22, 2023
1 parent 26ff3d2 commit b0ba942
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ste/downloader-blobFS_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (bd *blobFSDownloader) CreateFile(jptm IJobPartTransferMgr, destination str

func (bd *blobFSDownloader) ApplyUnixProperties(adapter common.UnixStatAdapter) (stage string, err error) {
// At this point, mode has already been applied. Let's work out what we need to apply, and apply the rest.
destination := bd.txInfo.getDownloadPath()
destination := bd.txInfo.Destination

// First, grab our file descriptor and such.
fi, err := os.Stat(destination)
Expand Down
2 changes: 1 addition & 1 deletion ste/downloader-blob_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (bd *blobDownloader) CreateFile(jptm IJobPartTransferMgr, destination strin

func (bd *blobDownloader) ApplyUnixProperties(adapter common.UnixStatAdapter) (stage string, err error) {
// At this point, mode has already been applied. Let's work out what we need to apply, and apply the rest.
destination := bd.txInfo.getDownloadPath()
destination := bd.txInfo.Destination

// First, grab our file descriptor and such.
fi, err := os.Stat(destination)
Expand Down

0 comments on commit b0ba942

Please sign in to comment.