fixed bug with fsExtra.copySync (#55)

This commit is contained in:
Edwin Sirko
2024-02-02 13:04:35 -05:00
parent 1f47b19ed3
commit dfbae910c5
5 changed files with 23 additions and 10 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ export function stageActionFiles(actionDir: string, targetDir: string) {
}
// Filter out hidden folers like .git and .github
return !basename.startsWith('.')
return basename === '.' || !basename.startsWith('.')
}
})