Skip to content

Commit

Permalink
fix: temporarily remove mkpath option
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves committed Nov 28, 2024
1 parent 41a1611 commit c12b755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export async function deploy(action: ActionInterface): Promise<Status> {
Allows the user to specify the root if '.' is provided.
rsync is used to prevent file duplication. */
await execute(
`rsync -q -av --checksum --progress --mkpath ${action.folderPath}/. ${
`rsync -q -av --checksum --progress ${action.folderPath}/. ${
action.targetFolder
? `${temporaryDeploymentDirectory}/${action.targetFolder}`
: temporaryDeploymentDirectory
Expand Down

0 comments on commit c12b755

Please sign in to comment.