We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0587392 commit 2df8febCopy full SHA for 2df8feb
internal/infra/run.go
@@ -31,6 +31,7 @@ import (
31
)
32
33
var runCmds = map[model.RunCommand]string{
34
+ model.VersionCommand: "bin/run fetch_files && bin/run update_files",
35
model.UpdateFilesCommand: "bin/run fetch_files && bin/run update_files",
36
model.RecreateCommand: "bin/run fetch_files && bin/run update_files",
37
model.SecurityCommand: "bin/run fetch_files && bin/run update_files",
internal/model/smoke.go
@@ -4,6 +4,7 @@ type RunCommand string
4
5
const (
6
UpdateFilesCommand RunCommand = "update"
7
+ VersionCommand RunCommand = "version"
8
RecreateCommand RunCommand = "recreate"
9
SecurityCommand RunCommand = "security"
10
UpdateGraphCommand RunCommand = "graph"
0 commit comments