Skip to content

Commit

Permalink
Downgrade granted in mac (#295)
Browse files Browse the repository at this point in the history
* Updates for Granted v0.19.9

* Downgrade granted in mac

* Added symlink to install block
  • Loading branch information
shwethaumashanker authored Oct 18, 2023
1 parent a5c6e27 commit 51eeeb9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/granted/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,28 @@ brew tap common-fate/granted
brew install granted
```

## Reverting to an older version of Granted

If you need to revert to an older version of Granted, you can manually downgrade using the following steps. Replace "0.18.0" with the specific version you want to install.

#### For Intel (x86_64 architecture):

```bash
curl -OL https://releases.commonfate.io/granted/v0.18.0/granted_0.18.0_darwin_x86_64.tar.gz
sudo tar -zxvf ./granted_0.18.0_darwin_x86_64.tar.gz -C /usr/local/bin/
ln -s /usr/local/bin/granted /usr/local/bin/assumego
```

#### For ARM (arm64 architecture):

```bash
curl -OL https://releases.commonfate.io/granted/v0.18.0/granted_0.18.0_darwin_arm64.tar.gz
sudo tar -zxvf ./granted_0.18.0_darwin_arm64.tar.gz -C /usr/local/bin/
ln -s /usr/local/bin/granted /usr/local/bin/assumego
```

The assumego path is symlinked to granted so that they can both share keychain items without additional prompts. The homebrew install does this automatically but for a manual install on MacOS you’ll need to do it yourself.

</TabItem>
<TabItem value="linux">

Expand Down

0 comments on commit 51eeeb9

Please sign in to comment.