Commit 7492ad7f authored by Adam Reese's avatar Adam Reese

fix(create): do not use full path for chart name

parent 117679c1
...@@ -2,6 +2,7 @@ package main ...@@ -2,6 +2,7 @@ package main
import ( import (
"errors" "errors"
"path/filepath"
"github.com/codegangsta/cli" "github.com/codegangsta/cli"
"github.com/kubernetes/deployment-manager/chart" "github.com/kubernetes/deployment-manager/chart"
...@@ -25,12 +26,14 @@ func create(c *cli.Context) error { ...@@ -25,12 +26,14 @@ func create(c *cli.Context) error {
return errors.New("'helm create' requires a chart name as an argument") return errors.New("'helm create' requires a chart name as an argument")
} }
dir, name := filepath.Split(args[0])
cf := &chart.Chartfile{ cf := &chart.Chartfile{
Name: args[0], Name: name,
Description: "Created by Helm", Description: "Created by Helm",
Version: "0.1.0", Version: "0.1.0",
} }
_, err := chart.Create(cf, ".") _, err := chart.Create(cf, dir)
return err return err
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment