Skip to content

Commit

Permalink
Updated install script in README
Browse files Browse the repository at this point in the history
  • Loading branch information
jmatias committed Sep 20, 2022
1 parent bf3af3f commit 63126f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ Talisman to be present, not only in your existing git repositories, but also in
As a pre-commit hook:

```
curl --silent https://raw.githubusercontent.com/thoughtworks/talisman/master/global_install_scripts/install.bash > /tmp/install_talisman.bash && /bin/bash /tmp/install_talisman.bash
bash -c "$(curl --silent https://thoughtworks.github.io/talisman/scripts/install.bash)"
```

OR

As a pre-push hook:

```
curl --silent https://raw.githubusercontent.com/thoughtworks/talisman/master/global_install_scripts/install.bash > /tmp/install_talisman.bash && /bin/bash /tmp/install_talisman.bash pre-push
bash -c "$(curl --silent https://thoughtworks.github.io/talisman/scripts/install.bash)" -- pre-push
```

2. If you do not have TALISMAN\_HOME set up in your `$PATH`, you will be asked an appropriate place to set it up. Choose the option number where you set the profile source on your machine.
Expand Down Expand Up @@ -559,13 +559,13 @@ Run the following command on your terminal to uninstall talisman globally from y
For pre-commit hook:

```
curl --silent https://raw.githubusercontent.com/thoughtworks/talisman/master/global_install_scripts/uninstall.bash > /tmp/uninstall_talisman.bash && /bin/bash /tmp/uninstall_talisman.bash
bash -c "$(curl --silent https://thoughtworks.github.io/talisman/scripts/uninstall.bash)"
```

For pre-push hook:

```
curl --silent https://raw.githubusercontent.com/thoughtworks/talisman/master/global_install_scripts/uninstall.bash > /tmp/uninstall_talisman.bash && /bin/bash /tmp/uninstall_talisman.bash pre-push
bash -c "$(curl --silent https://thoughtworks.github.io/talisman/scripts/uninstall.bash)" -- pre-push
```

This will
Expand Down

0 comments on commit 63126f5

Please sign in to comment.