Skip to content

Commit

Permalink
Auto-merge for PR #794 via VersionBot
Browse files Browse the repository at this point in the history
Ensure login does not wait for the browser process to close
  • Loading branch information
resin-io-versionbot[bot] authored Feb 20, 2018
2 parents cf95870 + 04adfde commit 3d28118
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

## v6.13.2 - 2018-02-20

* Ensure login does not wait for the browser process to close #794 [Tim Perry]

## v6.13.1 - 2018-02-07

* Move to the correct coffeescript (no hyphen) dependency #786 [Tim Perry]
Expand Down
2 changes: 1 addition & 1 deletion lib/auth/index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ exports.login = ->
# Leave a bit of time for the
# server to get up and runing
setTimeout ->
open(loginUrl)
open(loginUrl, { wait: false })
, 1000

return server.awaitForToken(options)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "6.13.1",
"version": "6.13.2",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",
Expand Down Expand Up @@ -149,4 +149,4 @@
"optionalDependencies": {
"removedrive": "^1.0.0"
}
}
}

0 comments on commit 3d28118

Please sign in to comment.