Use rm -rf (#3990)

This commit is contained in:
Michael Vines 2019-04-25 08:58:34 -07:00 committed by GitHub
parent d59c1cd412
commit b98200aca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -57,7 +57,7 @@ software on Linux x86_64 systems.
Install the latest release with a single shell command:
```bash
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.13.0/install/solana-install-init.sh | \
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.14.0/install/solana-install-init.sh | \
sh -s - --url https://api.beta.testnet.solana.com
```

View File

@ -48,7 +48,6 @@ main() {
need_cmd chmod
need_cmd mkdir
need_cmd rm
need_cmd rmdir
need_cmd sed
need_cmd grep
@ -113,7 +112,7 @@ main() {
retval=$?
ignore rm "$solana_install"
ignore rmdir "$temp_dir"
ignore rm -rf "$temp_dir"
return "$retval"
}