diff --git a/ste/downloader-blobFS_linux.go b/ste/downloader-blobFS_linux.go index 244248c71..696dce297 100644 --- a/ste/downloader-blobFS_linux.go +++ b/ste/downloader-blobFS_linux.go @@ -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) diff --git a/ste/downloader-blob_linux.go b/ste/downloader-blob_linux.go index 527cda65a..ea556cdeb 100644 --- a/ste/downloader-blob_linux.go +++ b/ste/downloader-blob_linux.go @@ -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)