Skip to content

Commit

Permalink
Log src filter
Browse files Browse the repository at this point in the history
  • Loading branch information
andershagbard committed Oct 7, 2024
1 parent e72c2c8 commit 09975a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/actions/parts/build-from-environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export default async (): Promise<void> => {

fs.emptyDirSync(BUILD_DIR);
fs.copySync(environment.directory, BUILD_DIR, {
filter: (src) => !src.includes('node_modules'),
filter: (src) => {
core.info(`Src: ${src}`)

return !src.includes('node_modules')
},
});

// Copy ignored files from environment
Expand Down

0 comments on commit 09975a5

Please sign in to comment.