Skip to content

Commit fcc2c48

Browse files
author
Parth Shah
committed
fix for file transfer file name bug
1 parent f83083c commit fcc2c48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ _.assignIn(util, {
115115
return new Promise((resolve, reject) => {
116116
var cmdStr = _.join([
117117
'aws s3 mv',
118-
source,
119-
dest,
118+
`"${source}"`,
119+
`"${dest}"`,
120120
'--region us-east-1'
121121
], ' ')
122122

0 commit comments

Comments
 (0)