func setup(c *cli.Context) error { log.Debug("Setup") // Input validation steplibURI := c.String(CollectionKey) if steplibURI == "" { log.Fatal("No step collection specified") } copySpecJSONPath := c.String(CopySpecJSONKey) if c.IsSet(LocalCollectionKey) { log.Warn("'local' flag is deprecated") log.Warn("use 'file://' prefix in steplib path instead") fmt.Println() } if c.Bool(LocalCollectionKey) { if !strings.HasPrefix(steplibURI, "file://") { log.Warnf("Appending file path prefix (file://) to StepLib (%s)", steplibURI) steplibURI = "file://" + steplibURI log.Warnf("From now you can refer to this StepLib with URI: %s", steplibURI) log.Warnf("For example, to delete StepLib call: `stepman delete --collection %s`", steplibURI) } } // Setup if err := setupSteplib(steplibURI, false); err != nil { log.Fatalf("Setup failed, error: %s", err) } // Copy spec.json if copySpecJSONPath != "" { log.Infof("Copying spec YML to path: %s", copySpecJSONPath) route, found := stepman.ReadRoute(steplibURI) if !found { log.Fatalf("No route found for steplib (%s)", steplibURI) } sourceSpecJSONPth := stepman.GetStepSpecPath(route) if err := cmdex.CopyFile(sourceSpecJSONPth, copySpecJSONPath); err != nil { log.Fatalf("Failed to copy spec.json from (%s) to (%s), error: %s", sourceSpecJSONPth, copySpecJSONPath, err) } } return nil }
func setup(c *cli.Context) { log.Debug("Setup") // Input validation steplibURI := c.String(CollectionKey) if steplibURI == "" { log.Fatal("No step collection specified") } copySpecJSONPath := c.String(CopySpecJSONKey) if c.IsSet(LocalCollectionKey) { log.Warn("'local' flag is deprecated") log.Warn("use 'file://' suffix in steplib path instead") fmt.Println() } if c.Bool(LocalCollectionKey) { if !strings.HasPrefix(steplibURI, "file://") { steplibURI = "file://" + steplibURI } } // Setup if err := setupSteplib(steplibURI, false); err != nil { log.Fatalf("Steup failed, error: %s", err) } // Copy spec.json if copySpecJSONPath != "" { log.Infof("Copying spec YML to path: %s", copySpecJSONPath) route, found := stepman.ReadRoute(steplibURI) if !found { log.Fatalf("No route found for steplib (%s)", steplibURI) } sourceSpecJSONPth := stepman.GetStepSpecPath(route) if err := cmdex.CopyFile(sourceSpecJSONPth, copySpecJSONPath); err != nil { log.Fatalf("Failed to copy spec.json from (%s) to (%s), error: %s", sourceSpecJSONPth, copySpecJSONPath, err) } } }