Skip to content

Commit

Permalink
symlink still giving trouble
Browse files Browse the repository at this point in the history
  • Loading branch information
IKCAP committed Sep 12, 2024
1 parent f164012 commit 648c91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/classes/localex/seed-execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ module.exports = async (job: any) => {
// Copy input files to tempdir
const ifile = inputdir + "/" + ds.name;
const newifile = tempdir + "/" + ds.name;
fs.symlinkSync(ifile, newifile);
// fs.copyFileSync(ifile, newifile);
// fs.symlinkSync(ifile, newifile);
fs.copyFileSync(ifile, newifile);
args.push(ds.name);
plainargs.push(ds.name);

Expand Down

0 comments on commit 648c91e

Please sign in to comment.