Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fh-digger-cli

Package Overview
Dependencies
Maintainers
5
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fh-digger-cli - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

2

package.json
{
"name": "fh-digger-cli",
"version": "0.1.11",
"version": "0.1.12",
"bin": {

@@ -5,0 +5,0 @@ "digger": "./bin/digger"

@@ -45,5 +45,7 @@ var _ = require("underscore");

return build.build(buildSettings).then(function(buildResponse) {
console.log("buildResponse %j", buildResponse);
shell.rm("-rf", path.dirname(settings.zip));
return build.buildStatus(buildSettings, buildResponse);
}).then(function(job) {
console.log("response %j", job);
// Download ipa file if possible

@@ -67,2 +69,7 @@ var downloadUrl = job.build.ipa_url || job.build.url;

}).catch(function(err) {
if(err.message.length > 1000) {
console.log(err.message.substr(0, 500) + " \n... [error clipped] ... \n" + err.message.substr(-500));
} else {
console.log(err.message);
}
bar.terminate();

@@ -69,0 +76,0 @@ throw err;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc