Skip to content

Commit

Permalink
Merge branch 'fix-root-directory' of https://github.com/grafikr/shopi…
Browse files Browse the repository at this point in the history
…fy-actions into fix-root-directory
  • Loading branch information
andershagbard committed Oct 7, 2024
2 parents 88f1e54 + fe90852 commit a3102e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Binary file modified dist/bin/theme
Binary file not shown.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112797,7 +112797,10 @@ var build_from_environment_awaiter = (undefined && undefined.__awaiter) || funct
core.info(`Copying directory "${environment.directory}" to "${BUILD_DIR}"`);
lib_default().emptyDirSync(BUILD_DIR);
lib_default().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
if (environment.ignore_files) {
Expand Down

0 comments on commit a3102e0

Please sign in to comment.