pj-nodegit 0.28.1 → 0.28.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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);
|