Skip to content

Commit

Permalink
Attempt to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andershagbard committed Mar 22, 2024
1 parent 38de891 commit faea3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/parts/build-from-environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default async (): Promise<void> => {

// Copy ignored files from environment
if (environment.ignore_files) {
let args = environment.ignore_files.map((arg) => `"${arg}"`).join(' ');
let args = environment.ignore_files.join(' ');
args += ` --no-ignore --dir="${BUILD_DIR}"`;

await download(args);
Expand Down

0 comments on commit faea3c0

Please sign in to comment.