Skip to content

Commit 0db9fd1

Browse files
committed
allow nested with blocks
1 parent ab35349 commit 0db9fd1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/transport/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Transport.prototype = {
319319

320320
for(var i in args) {
321321
if(typeof args[i] === 'string') {
322-
this._execWith = args[i] + ' && ';
322+
this._execWith += args[i] + ' && ';
323323
} else if(typeof args[i] === 'object') {
324324
this.options = util._extend(this.options, args[i]);
325325
} else if(typeof args[i] === 'function') {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flightplan",
33
"description": "Library for streamlining application deployment or systems administration tasks",
4-
"version": "0.3.2",
4+
"version": "0.3.3",
55
"author": "Patrick Stadler <[email protected]>",
66
"keywords": [
77
"deploy",

0 commit comments

Comments
 (0)