mirror of https://github.com/knative/func.git
Remove superfluous equals sign from envvar (#2446)
* Remove superfluous equals sign from envvar Signed-off-by: Matej Vašek <matejvasek@gmail.com> * Update rust templates Cargo.lock Signed-off-by: Matej Vašek <matejvasek@gmail.com> --------- Signed-off-by: Matej Vašek <matejvasek@gmail.com>
This commit is contained in:
parent
3c1490b351
commit
ae4c7d927c
File diff suppressed because it is too large
Load Diff
|
@ -33,7 +33,7 @@ function build_release() {
|
|||
knative_version="$(git describe --tags --match 'knative-*')"
|
||||
go_module_version="$(git describe --tags --match 'v*')"
|
||||
fi
|
||||
FUNC_REPO_BRANCH_REF="$(git branch --show-current)" VERS="${go_module_version}" KVER="=${knative_version}" make cross-platform
|
||||
FUNC_REPO_BRANCH_REF="$(git branch --show-current)" VERS="${go_module_version}" KVER="${knative_version}" make cross-platform
|
||||
|
||||
ARTIFACTS_TO_PUBLISH="func_darwin_amd64 func_darwin_arm64 func_linux_amd64 func_linux_arm64 func_linux_ppc64le func_linux_s390x func_windows_amd64.exe"
|
||||
ARTIFACTS_TO_PUBLISH="${ARTIFACTS_TO_PUBLISH}"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue