mirror of https://github.com/k3s-io/k3s
Browse Source
This reduces the binary footprint for downstream users that won't use these files anyway. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>pull/2198/head
Brad Davidson
4 years ago
committed by
Brad Davidson
7 changed files with 24 additions and 0 deletions
@ -0,0 +1,7 @@
|
||||
// +build no_stage
|
||||
|
||||
package deploy |
||||
|
||||
func Stage(dataDir string, templateVars map[string]string, skips map[string]bool) error { |
||||
return nil |
||||
} |
@ -0,0 +1,7 @@
|
||||
// +build no_stage
|
||||
|
||||
package static |
||||
|
||||
func Stage(dataDir string) error { |
||||
return nil |
||||
} |
Loading…
Reference in new issue