Skip to content

Commit 3945596

Browse files
committed
Don't no-op configureLibssh2 on Windows anymore.
1 parent a09613c commit 3945596

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

utils/configureLibssh2.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,5 @@ module.exports = function retrieveExternalDependencies() {
6060

6161
// Called on the command line
6262
if (require.main === module) {
63-
if (process.platform === "win32") {
64-
console.log("nothing to do");
65-
}
66-
else {
67-
module.exports();
68-
}
63+
module.exports();
6964
}

0 commit comments

Comments
 (0)