Skip to content

Commit

Permalink
Auto-merge for PR #805 via VersionBot
Browse files Browse the repository at this point in the history
Recommend unsafe-perm to fix some install issues and cleanup dependencies after MC
  • Loading branch information
resin-io-versionbot[bot] authored Mar 12, 2018
2 parents 4ef0682 + 3a3178b commit eb34cb6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.0.1 - 2018-03-12

* Recommend using unsafe-prem to avoid permission issues on install #805 [Tim Perry]
* Remove unnecessary resin-cli-auth dependency #805 [Tim Perry]

## v7.0.0 - 2018-03-09

* Add docker-compose-aware builds and deployments #792 [Akis Kesoglou]
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,13 @@ or if you have any trouble with this, please try the new standalone install step
This might require elevated privileges in some environments.

```sh
$ npm install --global --production resin-cli
$ npm install --global --production resin-cli --unsafe-perm
```

`--unsafe-perm` is only required on systems where the global install directory is not user-writable.
This allows npm install steps to download and save prebuilt native binaries. You may be able to omit it,
especially if you're using a user-managed node install such as [nvm](https://github.com/creationix/nvm).

### Standalone install

If you don't have node or a working pre-gyp environment, you can still install the CLI as a standalone
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "7.0.0",
"version": "7.0.1",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",
Expand Down Expand Up @@ -126,7 +126,6 @@
"reconfix": "^0.0.3",
"request": "^2.81.0",
"resin-bundle-resolve": "^0.5.3",
"resin-cli-auth": "^1.2.0",
"resin-cli-errors": "^1.2.0",
"resin-cli-form": "^1.4.1",
"resin-cli-visuals": "^1.4.0",
Expand All @@ -153,7 +152,6 @@
"string-width": "^2.1.1",
"through2": "^2.0.3",
"tmp": "0.0.31",
"ts-node": "^3.3.0",
"umount": "^1.1.6",
"unzip2": "^0.2.5",
"update-notifier": "^2.2.0",
Expand Down

0 comments on commit eb34cb6

Please sign in to comment.