pj-nodegit 0.28.1 → 0.28.2
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/utils/acquireOpenSSL.js +5 -3
package/package.json
CHANGED
package/utils/acquireOpenSSL.js
CHANGED
@@ -131,9 +131,11 @@ const buildOpenSSLIfNecessary = async (openSSLVersion, macOsDeploymentTarget) =>
|
|
131
131
|
|
132
132
|
try {
|
133
133
|
await fs.stat(extractPath);
|
134
|
-
console.log("Skipping OpenSSL build, dir exists");
|
135
|
-
return;
|
136
|
-
} catch {
|
134
|
+
console.log("Skipping OpenSSL build, dir exists:"+extractPath);
|
135
|
+
// return;
|
136
|
+
} catch {
|
137
|
+
console.log("OpenSSL build, dir not exists:"+extractPath);
|
138
|
+
}
|
137
139
|
|
138
140
|
const openSSLUrl = getOpenSSLSourceUrl(openSSLVersion);
|
139
141
|
const openSSLSha256Url = getOpenSSLSourceSha256Url(openSSLVersion);
|