Merge pull request #536 from resin-io/535-fix-local-ssh

Fix breaking bug in resin local ssh
This commit is contained in:
Tim Perry 2017-05-22 21:55:59 +02:00 committed by GitHub
commit eb9152255e
3 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fixed breaking bug in `resin local ssh`
## [5.10.0] - 2017-05-22
### Added

View File

@ -94,4 +94,4 @@ exports.pipeContainerStream = Promise.method(function(arg) {
});
});
exports.getSubShellCommand = require('../../utils/helpers');
exports.getSubShellCommand = require('../../utils/helpers').getSubShellCommand;

View File

@ -58,4 +58,4 @@ exports.pipeContainerStream = Promise.method ({ deviceIp, name, outStream, follo
return console.log(chalk.red.bold("Container '#{name}' not found."))
throw err
exports.getSubShellCommand = require('../../utils/helpers')
exports.getSubShellCommand = require('../../utils/helpers').getSubShellCommand