mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
13 lines
379 B
Bash
Executable File
13 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 The Kubernetes Authors.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
: "${kyaml_major?Need to source VERSIONS}"
|
|
: "${kyaml_minor?Need to source VERSIONS}"
|
|
: "${kyaml_patch?Need to source VERSIONS}"
|
|
|
|
go mod edit -dropreplace=sigs.k8s.io/kustomize/kyaml@v0.0.0
|
|
go mod edit -require=sigs.k8s.io/kustomize/kyaml@v$kyaml_major.$kyaml_minor.$kyaml_patch
|