Skip to content

Commit

Permalink
allow nested with blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Jun 8, 2014
1 parent ab35349 commit 0db9fd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/transport/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ Transport.prototype = {

for(var i in args) {
if(typeof args[i] === 'string') {
this._execWith = args[i] + ' && ';
this._execWith += args[i] + ' && ';
} else if(typeof args[i] === 'object') {
this.options = util._extend(this.options, args[i]);
} else if(typeof args[i] === 'function') {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flightplan",
"description": "Library for streamlining application deployment or systems administration tasks",
"version": "0.3.2",
"version": "0.3.3",
"author": "Patrick Stadler <[email protected]>",
"keywords": [
"deploy",
Expand Down

0 comments on commit 0db9fd1

Please sign in to comment.