Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const fs = require('fs');
const os = require('os');
const path = require('path');
const ini = require('ini');
const which = require('which');
let prefix;

const getPrefix = () => {
Expand Down Expand Up @@ -64,7 +65,7 @@ const getPrefix = () => {

function tryNpmPath() {
try {
return fs.realpathSync(require('which').sync('npm'));
return fs.realpathSync(which.sync('npm'));
} catch (err) { /* do nothing */ }
}

Expand Down