Fix lint issues

This commit is contained in:
Luke Hoban 2021-06-21 05:53:09 +10:00
parent f90ece4462
commit ae2f5db7e7
2 changed files with 7 additions and 5 deletions

View file

@ -35,7 +35,8 @@ import (
// Watch watches the project's working directory for changes and automatically updates the active
// stack.
func Watch(ctx context.Context, b Backend, stack Stack, op UpdateOperation, apply Applier, paths []string) result.Result {
func Watch(ctx context.Context, b Backend, stack Stack, op UpdateOperation,
apply Applier, paths []string) result.Result {
opts := ApplierOptions{
DryRun: false,

View file

@ -54,9 +54,9 @@ func newWatchCmd() *cobra.Command {
Short: "[PREVIEW] Continuously update the resources in a stack",
Long: "Continuously update the resources in a stack.\n" +
"\n" +
"This command watches the working directory or specified paths for the current project and updates the active stack whenever\n" +
"the project changes. In parallel, logs are collected for all resources in the stack and displayed along\n" +
"with update progress.\n" +
"This command watches the working directory or specified paths for the current project and updates\n" +
"the active stack whenever the project changes. In parallel, logs are collected for all resources\n" +
"in the stack and displayed along with update progress.\n" +
"\n" +
"The program to watch is loaded from the project in the current directory by default. Use the `-C` or\n" +
"`--cwd` flag to use a different directory.",
@ -147,7 +147,8 @@ func newWatchCmd() *cobra.Command {
cmd.PersistentFlags().StringArrayVarP(
&pathArray, "path", "", []string{""},
"Specify one or more relative or absolute paths that need to be watched. A path can point to a folder or a file. Defaults to working directory")
"Specify one or more relative or absolute paths that need to be watched. "+
"A path can point to a folder or a file. Defaults to working directory")
cmd.PersistentFlags().BoolVarP(
&debug, "debug", "d", false,
"Print detailed debugging output during resource operations")