Skip to content

Commit

Permalink
ci: try to resolve relative paths for go installs
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Howard <[email protected]>
  • Loading branch information
jhoward-lm committed Nov 16, 2024
1 parent 6e04e69 commit 468e6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function run_install {
if [[ ! $install_version =~ $semver_pattern ]]; then
log_info "Performing go install of github.com/bomctl/bomctl@${install_version}"

GOBIN="${INSTALL_DIR}" go install "github.com/bomctl/bomctl@${install_version}"
GOBIN=$(readlink -f "${INSTALL_DIR}") go install "github.com/bomctl/bomctl@${install_version}"

return
fi
Expand Down

0 comments on commit 468e6b3

Please sign in to comment.