Skip to content

Commit d9bfa30

Browse files
committed
updated git ignore and readme
1 parent 4f66b18 commit d9bfa30

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.dll
88
*.so
99
*.dylib
10+
/dist
1011

1112
# Test binary, built with `go test -c`
1213
*.test

README.md

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

2727
# download and extract the binary
28-
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
28+
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 > cf-support
2929

3030
# set execution to binary
3131
chmod +x cf-support
@@ -41,7 +41,7 @@ chmod +x cf-support
4141
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
4242

4343
# download and extract the binary
44-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_amd64.tar.gz | tar zx -O > cf-support
44+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_darwin_amd64.tar.gz | tar -zx -O cf-support > cf-support
4545

4646
# set execution to binary
4747
chmod +x cf-support
@@ -57,7 +57,7 @@ chmod +x cf-support
5757
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
5858

5959
# download and extract the binary
60-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_arm64.tar.gz | tar zx -O > cf-support
60+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_arm64.tar.gz | tar -zx -O cf-support > cf-support
6161

6262
# set execution to binary
6363
chmod +x cf-support
@@ -73,7 +73,7 @@ chmod +x cf-support
7373
VERSION=$(curl --silent "https://api.github.com/repos/codefresh-support/codefresh-support-package/releases/latest" | jq -r ".tag_name")
7474

7575
# download and extract the binary
76-
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_amd64.tar.gz | tar zx -O > cf-support
76+
curl -L --output - https://github.com/codefresh-support/codefresh-support-package/releases/download/$VERSION/cf-support_linux_amd64.tar.gz | tar -zx -O cf-support > cf-support
7777

7878
# set execution to binary
7979
chmod +x cf-support

0 commit comments

Comments
 (0)