Skip to content
Closed
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
Fix bin-overwriting test on Windows
Paired with @ruyadorno
  • Loading branch information
isaacs committed Jan 6, 2020
commit ba33b0b333209a2dde16ffb76a85fdeb26322802
2 changes: 1 addition & 1 deletion test/tap/bin-overwriting.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const readBin = bin => new Promise((resolve, reject) => {
if (er) {
reject(er)
} else {
resolve(path.resolve(pkg + '/global/bin', target))
resolve(path.resolve(path.dirname(bin), target))
}
})
})
Expand Down