Use bash instead of sh

We are relying on some bash-specific substitutions
that I can't get rid off quickly and safely.
pull/195/head
Simon Let 3 years ago
parent 7b4ae58552
commit 48b0ec4fe2
  1. 4
      README.md
  2. 4
      installation.md
  3. 2
      scripts/rawinstall.sh

@ -27,10 +27,10 @@ Relevant results are displayed first based on current directory, git repo, and e
Install RESH with one command:
```sh
curl -fsSL https://raw.githubusercontent.com/curusarn/resh/master/scripts/rawinstall.sh | sh
curl -fsSL https://raw.githubusercontent.com/curusarn/resh/master/scripts/rawinstall.sh | bash
```
You will need to have `curl` and `tar` installed.
You will need to have `bash`, `curl`, and `tar` installed.
More options on [Installation page ⇗](./installation.md)

@ -5,10 +5,10 @@
Feel free to check the `rawinstall.sh` script before running it.
```sh
curl -fsSL https://raw.githubusercontent.com/curusarn/resh/master/scripts/rawinstall.sh | sh
curl -fsSL https://raw.githubusercontent.com/curusarn/resh/master/scripts/rawinstall.sh | bash
```
You will need to have `curl` and `tar` installed.
You will need to have `bash`, `curl`, and `tar` installed.
## Clone & install

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -eu
set -euo pipefail
echo
echo "Please report any issues you encounter to: https://github.com/curusarn/resh/issues"

Loading…
Cancel
Save