Skip to content

Commit

Permalink
🐛 Ignore .git folder when checking orphaned files (#287)
Browse files Browse the repository at this point in the history
* fix: ignore `.git` folder when checking orphaned files
* ncc
  • Loading branch information
balazsorban44 committed Jan 7, 2023
1 parent 475a650 commit 5212d28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30697,9 +30697,10 @@ const copy = async (src, dest, isDirectory, file) => {
const destFileList = await readfiles(dest, { readContents: false, hidden: true })

for (const destFile of destFileList) {
if (destFile.startsWith('.git')) return
if (srcFileList.indexOf(destFile) === -1) {
const filePath = path.join(dest, destFile)
core.debug(`Found a orphaned file in the target repo - ${ filePath }`)
core.debug(`Found an orphaned file in the target repo - ${ filePath }`)

if (file.exclude !== undefined && file.exclude.includes(path.join(src, destFile))) {
core.debug(`Excluding file ${ destFile }`)
Expand Down
3 changes: 2 additions & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ const copy = async (src, dest, isDirectory, file) => {
const destFileList = await readfiles(dest, { readContents: false, hidden: true })

for (const destFile of destFileList) {
if (destFile.startsWith('.git')) return
if (srcFileList.indexOf(destFile) === -1) {
const filePath = path.join(dest, destFile)
core.debug(`Found a orphaned file in the target repo - ${ filePath }`)
core.debug(`Found an orphaned file in the target repo - ${ filePath }`)

if (file.exclude !== undefined && file.exclude.includes(path.join(src, destFile))) {
core.debug(`Excluding file ${ destFile }`)
Expand Down

0 comments on commit 5212d28

Please sign in to comment.