Fix breaking bug in resin local ssh

This commit is contained in:
Tim Perry 2017-05-22 20:49:34 +02:00
parent 5b651c7821
commit 78ab47b584
No known key found for this signature in database
GPG Key ID: 0DDE38AFD3AF94F0
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