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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pj-nodegit",
3
3
  "description": "Node.js libgit2 asynchronous native bindings",
4
- "version": "0.28.1",
4
+ "version": "0.28.2",
5
5
  "homepage": "http://nodegit.org",
6
6
  "keywords": [
7
7
  "libgit2",
@@ -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);