diff --git a/go.mod b/go.mod index e3b65c624..3f6aa6d9c 100644 --- a/go.mod +++ b/go.mod @@ -96,7 +96,7 @@ require ( gopkg.in/warnings.v0 v0.1.2 // indirect ) -// replace github.com/jfrog/jfrog-client-go => github.com/jfrog/jfrog-client-go v1.28.1-0.20240829083621-af9bf4a3042d +// replace github.com/jfrog/jfrog-client-go => github.com/jfrog/jfrog-client-go v1.28.1-0.20240827071113-de462dc3df22 // replace github.com/jfrog/build-info-go => github.com/asafambar/build-info-go v1.8.9-0.20240819133117-c3f52700927d diff --git a/utils/coreutils/coreconsts.go b/utils/coreutils/coreconsts.go index cf2c08712..2e1eba07c 100644 --- a/utils/coreutils/coreconsts.go +++ b/utils/coreutils/coreconsts.go @@ -49,6 +49,7 @@ const ( CI = "CI" ServerID = "JFROG_CLI_SERVER_ID" TransitiveDownload = "JFROG_CLI_TRANSITIVE_DOWNLOAD" + // Deprecated and replaced with TransitiveDownload TransitiveDownloadExperimental = "JFROG_CLI_TRANSITIVE_DOWNLOAD_EXPERIMENTAL" ) diff --git a/utils/osutils/utils_unix.go b/utils/osutils/utils_unix.go index c70c907e5..f058de0f5 100644 --- a/utils/osutils/utils_unix.go +++ b/utils/osutils/utils_unix.go @@ -1,5 +1,5 @@ -//go:build linux || darwin || freebsd -// +build linux darwin freebsd +//go:build linux || darwin || freebsd || openbsd +// +build linux darwin freebsd openbsd package osutils