diff --git a/plugin.go b/plugin.go index 8fe36fa..b80474b 100644 --- a/plugin.go +++ b/plugin.go @@ -42,7 +42,7 @@ func (p Plugin) uploadCommand() *exec.Cmd { args = append(args, p.Username) args = append(args, "--password") args = append(args, p.Password) - args = append(args, filepath.Join(filepath.Dir(p.DistDir), "/*")) + args = append(args, filepath.Join(p.DistDir, "/*")) return exec.Command("twine", args...) }