Skip to content

Commit 3588993

Browse files
committed
Deploy Production Code for Commit 3f0ab6b 🚀
1 parent 3f0ab6b commit 3588993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/git.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function deploy(action) {
114114
Pushes all of the build files into the deployment directory.
115115
Allows the user to specify the root if '.' is provided.
116116
rsync is used to prevent file duplication. */
117-
yield (0, execute_1.execute)(`rsync -q -av --checksum --progress ${action.folderPath}/. ${action.targetFolder
117+
yield (0, execute_1.execute)(`rsync -q -av --checksum --progress ${action.targetFolder ? '--mkpath' : ''} ${action.folderPath}/. ${action.targetFolder
118118
? `${temporaryDeploymentDirectory}/${action.targetFolder}`
119119
: temporaryDeploymentDirectory} ${action.clean
120120
? `--delete ${excludes} ${!fs_1.default.existsSync(`${action.folderPath}/${constants_1.DefaultExcludedFiles.CNAME}`)

0 commit comments

Comments
 (0)