Skip to content

Commit

Permalink
Fix copiable code snippets in README.md (#316)
Browse files Browse the repository at this point in the history
* Fix the "Installation" code snippet in README.md

* Remove `$ ` from all copiable code snippets
  • Loading branch information
msantl committed Sep 14, 2021
1 parent 7ea5b81 commit 588ca2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ As a side effect of this change, if you didn't use path based secrets before 2.0
To migrate to the new format, you can take advantage of the `export` and `import` commands. For example, if you wanted to convert secrets for service `foo` to the new format using chamber 2.0, you can do:

```bash
$ CHAMBER_NO_PATHS=1 chamber export foo | chamber import foo -
CHAMBER_NO_PATHS=1 chamber export foo | chamber import foo -
```

## Installing

If you have a functional go environment, you can install with:

```bash
$ go get github.com/segmentio/chamber
go get github.com/segmentio/chamber
```

[See the wiki for more installation options like Docker images, Linux packages, and precompiled binaries.](https://github.com/segmentio/chamber/wiki/Installation)
Expand All @@ -35,7 +35,7 @@ values to SSM Parameter Store. The easiest way to do so is by using
`aws-vault`, like:

```bash
$ aws-vault exec prod -- chamber
aws-vault exec prod -- chamber
```

For this reason, it is recommended that you create an alias in your shell of
Expand Down

0 comments on commit 588ca2a

Please sign in to comment.