Skip to content

Commit

Permalink
Merge pull request #866 from SharpRake/ctl-update
Browse files Browse the repository at this point in the history
updating curl commands for chainctl install
  • Loading branch information
SharpRake authored Jul 26, 2023
2 parents 8611cb8 + b4c5ebd commit 671583e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ brew install chainctl
A platform agnostic approach to installing `chainctl` is through using `curl`, which you can achieve with the following command.

```bash
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m)"
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/aarch64/arm64/')"
```

Move `chainctl` into your `/usr/local/bin` directory and elevate its permissions so that it can execute as needed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ You are now ready to use the `chainctl` command. You can verify that it works co
A platform agnostic approach to installing `chainctl` is through using `curl`, which you can achieve with the following command.

```bash
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m)"
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/aarch64/arm64/')"
```

Move `chainctl` into your `/usr/local/bin` directory and elevate its permissions so that it can execute as needed.
Expand Down
2 changes: 1 addition & 1 deletion content/ui/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mkdir ~/enforce-demo && cd $_
To install `chainctl`, we’ll use the `curl` command to pull the application down.

```sh
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m)"
curl -o chainctl "https://dl.enforce.dev/chainctl/latest/chainctl_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/aarch64/arm64/')"
```

Move `chainctl` into your `/usr/local/bin` directory and elevate its permissions so that it can execute as needed.
Expand Down

0 comments on commit 671583e

Please sign in to comment.