Skip to content

Commit

Permalink
fix a problem where SSH() modified the original privateKey property (f…
Browse files Browse the repository at this point in the history
…ixes #75)
  • Loading branch information
pstadler committed Feb 28, 2015
1 parent d4bfae7 commit 2f8b367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/transport/ssh.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var util = require('util')
function SSH(context) {
SSH.super_.call(this, context);

var config = context.remote;
var config = extend({}, context.remote); // clone

if(config.tryKeyboard !== false) {
config.tryKeyboard = true;
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.6.0",
"version": "0.6.1",
"author": "Patrick Stadler <patrick.stadler@gmail.com>",
"keywords": [
"deploy",
Expand Down

0 comments on commit 2f8b367

Please sign in to comment.