Skip to content

Commit

Permalink
Merge pull request #33 from carlosmmatos/fix-python3-check
Browse files Browse the repository at this point in the history
Fix python3 check
  • Loading branch information
redhatrises authored Sep 14, 2023
2 parents 69d6c50 + 1b96229 commit 1a8c558
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AWS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Open AWS Cloud Shell ([overview](https://aws.amazon.com/cloudshell/), [documenta
### Run the script

```shell
curl https://raw.githubusercontent.com/CrowdStrike/Cloud-Benchmark/main/benchmark.sh | /bin/bash
curl https://raw.githubusercontent.com/CrowdStrike/cloud-resource-estimator/main/benchmark.sh | bash
```

### Collect the findings
Expand Down
2 changes: 1 addition & 1 deletion Azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ No changes will be made to your account. No data will be sent anywhere and will
### Run the script

```shell
curl https://raw.githubusercontent.com/CrowdStrike/Cloud-Benchmark/main/benchmark.sh | /bin/bash
curl https://raw.githubusercontent.com/CrowdStrike/cloud-resource-estimator/main/benchmark.sh | bash
```

### Collect the findings
Expand Down
2 changes: 1 addition & 1 deletion GCP/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ No changes will be made to your account. No data will be sent anywhere and will

### Initialize execution environment

[![Open GCP Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2FCrowdStrike%2FCloud-Benchmark)
[![Open GCP Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2FCrowdStrike%2Fcloud-resource-estimator)

### Run the script

Expand Down
2 changes: 1 addition & 1 deletion benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ check_python3() {
echo "Python3 not found. Please install Python3 and try again."
exit 1
fi
if ! type pip >/dev/null 2>&1; then
if ! type pip3 >/dev/null 2>&1; then
echo "Pip not found. Please install pip and try again."
exit 1
fi
Expand Down

0 comments on commit 1a8c558

Please sign in to comment.