(ref string)
| 224 | } |
| 225 | |
| 226 | func isPathLikeWorkspaceRef(ref string) bool { |
| 227 | return filepath.IsAbs(ref) || |
| 228 | strings.HasPrefix(ref, ".") || |
| 229 | strings.Contains(ref, string(filepath.Separator)) |
| 230 | } |
| 231 | |
| 232 | func workspaceEditFlagsChanged(cmd *cobra.Command) bool { |
| 233 | return cmd.Flags().Changed(automationNameKey) || |
no test coverage detected