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: cmd/delete.go
+13-10
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ import (
12
12
funcinit() {
13
13
root.AddCommand(deleteCmd)
14
14
deleteCmd.Flags().StringP("path", "p", cwd(), "Path to the project which should be deleted - $FAAS_PATH")
15
+
deleteCmd.Flags().StringP("namespace", "n", "", "Override namespace in which to search for Functions. Default is to use currently active underlying platform setting - $FAAS_NAMESPACE")
15
16
deleteCmd.Flags().BoolP("yes", "y", false, "When in interactive mode (attached to a TTY), skip prompting the user. - $FAAS_YES")
16
17
}
17
18
@@ -21,14 +22,14 @@ var deleteCmd = &cobra.Command{
21
22
Long: `Removes the deployed Function by name, by explicit path, or by default for the current directory. No local files are deleted.`,
0 commit comments