Skip to content

Commit

Permalink
fix: build staging no longer copies symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed Apr 22, 2018
1 parent ccd426d commit 0fc60bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/build-dir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ export class BuildDir {
}

private async sync(sourcePath: string, destinationPath: string): Promise<void> {

await ensureDir(destinationPath)

const syncCmd = new Rsync()
.flags(["a"])
.flags(["r", "p", "t", "g", "o"])
.source(sourcePath)
.destination(destinationPath)

Expand Down

0 comments on commit 0fc60bd

Please sign in to comment.