(srcPath string)
| 46 | } |
| 47 | |
| 48 | func (o *compactOptions) Validate(srcPath string) (err error) { |
| 49 | if o.dstPath == "" { |
| 50 | return errors.New("output file required") |
| 51 | } |
| 52 | |
| 53 | return |
| 54 | } |
| 55 | |
| 56 | func (o *compactOptions) Run(cmd *cobra.Command, srcPath string) (err error) { |
| 57 |