Auto-merge for PR #939 via VersionBot

Fix bug where the sudo helper failed in os initialize
This commit is contained in:
resin-io-versionbot[bot] 2018-08-09 10:37:53 +00:00 committed by GitHub
commit 5beeb78220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
## v7.8.6 - 2018-08-09
* Fix bug where the sudo helper failed in os initialize #939 [Tim Perry]
## v7.8.5 - 2018-08-09
* Update .resin-sync.yml docs for local push and include example env vars #934 [Tim Perry]

View File

@ -62,7 +62,7 @@ export function stateToString(state: OperationState) {
export function sudo(
command: string[],
{ stderr, msg }: { stderr?: NodeJS.WritableStream; msg?: string },
{ stderr, msg }: { stderr?: NodeJS.WritableStream; msg?: string } = {},
) {
const { executeWithPrivileges } = require('./sudo');

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "7.8.5",
"version": "7.8.6",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",