Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,12 @@ const createDownloadPage = async () => {
'and download the binary that matches your operating system.<br>\n' +
'We currently support the following OS: <br>\n' +
'<ul>\n' +
' <li><a href=' + links[0] + ' target="_blank">Alpine-x64</a></li>\n' +
' <li><a href=' + links[1] + ' target="_blank">Linux-x64</a></li>\n' +
' <li><a href=' + links[2] + ' target="_blank">Macos-x64</a></li>\n' +
' <li><a href=' + links[3] + ' target="_blank">Windows-x64</a></li>\n' +
' <li><a href=' + links[4] + ' target="_blank">Alpine-arm64</a></li>\n' +
' <li><a href=' + links[0] + ' target="_blank">Alpine-arm64</a></li>\n' +
' <li><a href=' + links[1] + ' target="_blank">Alpine-x64</a></li>\n' +
' <li><a href=' + links[2] + ' target="_blank">Linux-arm64</a></li>\n' +
' <li><a href=' + links[3] + ' target="_blank">Linux-x64</a></li>\n' +
' <li><a href=' + links[4] + ' target="_blank">Macos-x64</a></li>\n' +
' <li><a href=' + links[5] + ' target="_blank">Windows-x64</a></li>\n' +
'</ul> \n' +
'\n' +
'After downloading the binary, untar or unzip it and your are good to go.<br>\n' +
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.87.3",
"version": "0.87.4",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand All @@ -9,7 +9,7 @@
"test": "jest .spec.js --coverage",
"e2e": "bash e2e/e2e.spec.sh",
"eslint": "eslint --fix lib/logic/**",
"pkg": "pkg . -t node16-alpine-x64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
"pkg": "pkg . -t node16-alpine-x64,node16-alpine-arm64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
"serve-docs": "yarn build-local-docs && cd temp && hugo server -D",
"serve-docs-beta": "ALLOW_BETA_COMMANDS=true yarn build-local-docs && cd temp && hugo server -D",
"build-local-docs": "node ./docs/index.js",
Expand Down Expand Up @@ -115,4 +115,4 @@
"./test-setup.js"
]
}
}
}