Skip to content

Commit

Permalink
fix: copy dotfiles (#521)
Browse files Browse the repository at this point in the history
Close #520

Related to:

- pr: #512 
- #507 #509 
- #390
- #324
- #103
  • Loading branch information
peaceiris committed Oct 15, 2020
1 parent 66acd31 commit 95792e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function copyAssets(
}

core.info(`[INFO] copy ${publishDir} to ${destDir}`);
cp('-RfL', [`${publishDir}/*`], destDir);
cp('-RfL', [`${publishDir}/*`, `${publishDir}/.*`], destDir);

await deleteExcludedAssets(destDir, excludeAssets);

Expand Down

0 comments on commit 95792e1

Please sign in to comment.