Skip to content

Commit 5a258e2

Browse files
author
Luke Goodfellow
committed
fixed incorrect command in readme
1 parent e503361 commit 5a258e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This project is designed to gather data from Hybrid Runtimes for Codefresh SaaS
2828
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
2929

3030
# download and extract the binary
31-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_arm64.tar.gz | tar zx -O cf-support
31+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_arm64.tar.gz | tar zx -O > cf-support
3232

3333
# set execution to binary
3434
chmod +x cf-support
@@ -44,7 +44,7 @@ chmod +x cf-support
4444
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
4545

4646
# download and extract the binary
47-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_x86_64.tar.gz | tar zx -O cf-support
47+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_x86_64.tar.gz | tar zx -O > cf-support
4848

4949
# set execution to binary
5050
chmod +x cf-support
@@ -60,7 +60,7 @@ chmod +x cf-support
6060
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
6161

6262
# download and extract the binary
63-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_x86_64.tar.gz | tar zx -O cf-support
63+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_x86_64.tar.gz | tar zx -O > cf-support
6464

6565
# set execution to binary
6666
chmod +x cf-support

0 commit comments

Comments
 (0)