Skip to content

Commit

Permalink
Fix more wrong imports. And yarn before publish next time...
Browse files Browse the repository at this point in the history
  • Loading branch information
canibanoglu committed Nov 21, 2019
1 parent 3123ab0 commit a061232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node
const { wrapBinaryCommands } = require("./wrapBinaryCommands");
const { INFO } = require("./utils");
const { INFO } = require("../utils");

Promise.all([wrapBinaryCommands()]).then(() => {
INFO("Finished post installation!");
Expand Down
2 changes: 1 addition & 1 deletion scripts/wrapBinaryCommands.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const packageInfo = require("../package.json");
const fs = require("fs").promises;
const path = require("path");
const { INFO } = require("./utils");
const { INFO } = require("../utils");

const WRAPPER_CONTENT = fileName => `#!/usr/bin/env node
const path = require('path');
Expand Down

0 comments on commit a061232

Please sign in to comment.