You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/devspace/pipeline/engine/basichandler/commands/run_watch.go
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,11 @@ import (
21
21
typeRunWatchOptionsstruct {
22
22
FailOnErrorbool`long:"fail-on-error" description:"If true the command will fail on an error while running the sub command"`
23
23
24
-
SkipInitialbool`long:"skip-initial" description:"If true will not execute the command immediately."`
25
-
Silentbool`long:"silent" description:"If true will not print any warning about restarting the command."`
26
-
Paths []string`long:"path" short:"p" description:"The paths to watch. Can be patterns in the form of ./**/my-file.txt"`
24
+
SkipInitialbool`long:"skip-initial" description:"If true will not execute the command immediately."`
25
+
Silentbool`long:"silent" description:"If true will not print any warning about restarting the command."`
26
+
SkipAndSilentbool`long:"skip-and-silent" short:"s" description:"If enabled will not print when the command is restarted and not execute the command initially."`
27
+
Exclude []string`long:"exclude" short:"e" description:"The paths to ignore. Can be patterns in the form of ./**/my-file.txt"`
28
+
Paths []string`long:"path" short:"p" description:"The paths to watch. Can be patterns in the form of ./**/my-file.txt"`
0 commit comments