Skip to content

Commit

Permalink
fixup cli permission (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored and rauchg committed Feb 1, 2019
1 parent 0a9014e commit 979cb7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function main() {
writeFileSync(__dirname + "/../dist/ncc/loaders/shebang-loader.js.cache.js", shebangLoaderAssets["shebang-loader.js.cache.js"]);
writeFileSync(__dirname + "/../dist/ncc/loaders/ts-loader.js.cache.js", tsLoaderAssets["ts-loader.js.cache.js"]);

writeFileSync(__dirname + "/../dist/ncc/cli.js", cli, { mode: 0x777 });
writeFileSync(__dirname + "/../dist/ncc/cli.js", cli, { mode: 0o777 });
writeFileSync(__dirname + "/../dist/ncc/index.js", index);
writeFileSync(__dirname + "/../dist/ncc/typescript.js", `
const { Module } = require('module');
Expand Down

0 comments on commit 979cb7c

Please sign in to comment.