Fix install sh usage (#2454)

* Note that godownloader is deprecated

* Fix usage

* Fix spelling of install

---------

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-09-19 04:47:26 -04:00
committed by GitHub
parent 2e117a4d2b
commit be89cbcf51

View File

@@ -1,6 +1,7 @@
#!/bin/sh #!/bin/sh
set -e set -e
# Code generated by godownloader on 2021-12-22T16:10:52Z. DO NOT EDIT. # Code originally generated by godownloader on 2021-12-22T16:10:52Z. DO NOT EDIT.
# (godownloader is deprecated, so changes to this script are maintained in install.sh in https://github.com/nektos/act)
# #
usage() { usage() {
@@ -8,16 +9,12 @@ usage() {
cat <<EOF cat <<EOF
$this: download go binaries for nektos/act $this: download go binaries for nektos/act
Usage: $this [-b] bindir [-d] [tag] Usage: $this [-b bindir] [-d] [tag]
-b sets bindir or installation directory, Defaults to ./bin -b sets bindir or installation directory, Defaults to ./bin
-d turns on debug logging -d turns on debug logging
[tag] is a tag from [tag] is a tag from
https://github.com/nektos/act/releases https://github.com/nektos/act/releases
If tag is missing, then the latest will be used. If tag is missing, then the latest will be used.
Generated by godownloader
https://github.com/goreleaser/godownloader
EOF EOF
exit 2 exit 2
} }