Skip to content

Commit

Permalink
fixed strange windows build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaWise committed Jan 19, 2022
1 parent 9ad75ac commit 963327a
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions deps/symlink.js
Expand Up @@ -4,14 +4,7 @@ const fs = require('fs');

const dest = process.argv[2];
const source = path.resolve(path.sep, process.argv[3] || path.join(__dirname, 'sqlite3'));
const filenames = process.argv.slice(4);

console.log(`CWD: ${JSON.stringify(process.cwd())}`);
console.log(`ARGV: ${JSON.stringify(process.argv)}`);
console.log(`DIRNAME: ${JSON.stringify(__dirname)}`);
console.log(`DEST: ${JSON.stringify(dest)}`);
console.log(`SOURCE: ${JSON.stringify(source)}`);
console.log(`FILENAMES: ${JSON.stringify(filenames)}`);
const filenames = process.argv.slice(4).map(str => path.basename(str));

/*
This creates symlinks inside the <$2> directory, linking to files inside the
Expand Down

0 comments on commit 963327a

Please sign in to comment.