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

cloud

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloud - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

5

History.md
1.2.1 / 2014-01-07
==================
* increase maxBuffer
1.2.0 / 2014-01-03

@@ -3,0 +8,0 @@ ==================

18

index.js

@@ -310,3 +310,3 @@

if (!this.cloud.dry) var ret = (yield exec(cmd)).trim();
if (!this.cloud.dry) var ret = (yield this._exec(cmd)).trim();
if (!this.cloud.dry) this.stdio(ret, host);

@@ -348,3 +348,3 @@ return ret;

if (!this.cloud.dry) var ret = (yield exec(cmd)).trim();
if (!this.cloud.dry) var ret = (yield this._exec(cmd)).trim();
if (!this.cloud.dry) this.stdio(ret, host);

@@ -355,2 +355,16 @@ return ret;

/**
* Execute `cmd`.
*
* @param {String} cmd
* @return {Function}
* @api private
*/
Host.prototype._exec = function(cmd){
return exec(cmd, {
maxBuffer: 1024 * 1024
});
};
/**
* Log stdio `str`.

@@ -357,0 +371,0 @@ *

2

package.json
{
"name": "cloud",
"version": "1.2.0",
"version": "1.2.1",
"repository": "segmentio/cloud",

@@ -5,0 +5,0 @@ "description": "remote scripting like capistrano / fabric for managing clusters",

@@ -178,4 +178,10 @@

### Setting context variables
The `this` variable becomes a `Context` which holds all of the values
defined via the `-s, --set` flag. For example `-s version=1.2.0` will
provide `this.version == "1.2.0"`, and `-s debug` will set `this.debug == true`.
# License
MIT
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