Commit a0acb3d5 authored by Adam Reese's avatar Adam Reese

Merge pull request #24 from adamreese/fix/create-in-dir

fix(create): do not use full path for chart name
parents 117679c1 7492ad7f
......@@ -2,6 +2,7 @@ package main
import (
"errors"
"path/filepath"
"github.com/codegangsta/cli"
"github.com/kubernetes/deployment-manager/chart"
......@@ -25,12 +26,14 @@ func create(c *cli.Context) error {
return errors.New("'helm create' requires a chart name as an argument")
}
dir, name := filepath.Split(args[0])
cf := &chart.Chartfile{
Name: args[0],
Name: name,
Description: "Created by Helm",
Version: "0.1.0",
}
_, err := chart.Create(cf, ".")
_, err := chart.Create(cf, dir)
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