mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 19:59:40 +00:00
Also update all use of 'go get' => 'go install', update CI tooling for 1.18 compatibility, and gofmt everything so lint passes. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
9 lines
160 B
Go
9 lines
160 B
Go
//go:build no_stage
|
|
// +build no_stage
|
|
|
|
package deploy
|
|
|
|
func Stage(dataDir string, templateVars map[string]string, skips map[string]bool) error {
|
|
return nil
|
|
}
|