linux install script installs to ./bin
and not /bin
#2335
daantimmer
started this conversation in
General
Replies: 1 comment
-
It is. usage() {
this=$1
cat <<EOF
$this: download go binaries for nektos/act
Usage: $this [-b] bindir [-d] [tag]
-b sets bindir or installation directory, Defaults to ./bin
# snip
EOF
exit 2
}
parse_args() {
#BINDIR is ./bin unless set be ENV
# over-ridden by flag below
BINDIR=${BINDIR:-./bin}
# snip
} https://github.com/nektos/act/blob/master/install.sh#L11-L30 Don't know about what |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to install
act
in my devcontainer. And instead of installing in/bin
it is installing in./bin
which is unexpected.Note, I had to crop the
sudo
command from the script as our devcontainer does not have sudo installed.Is this intended behaviour? Or a small issue in the
install.sh
script?Beta Was this translation helpful? Give feedback.
All reactions