Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix install sh usage #2454

Merged
merged 4 commits into from
Sep 19, 2024
Merged
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
9 changes: 3 additions & 6 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
#!/bin/sh
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() {
this=$1
cat <<EOF
$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
-d turns on debug logging
[tag] is a tag from
https://github.com/nektos/act/releases
If tag is missing, then the latest will be used.

Generated by godownloader
https://github.com/goreleaser/godownloader

EOF
exit 2
}
Expand Down
Loading