Keats/kickstart

The directory option does not work as intended

Opened this issue · 2 comments

As I understand it, if put your template under a "template" folder (for instance) and add directory = "template" to your template.toml, template should become the root of the scaffold.

However, when using the example above with kickstart . -o OUTPUT, we end up with the following:

.
├── OUTPUT
│   └── template
│       └── some_file
├── template
│   └── some_file
└── template.toml

whereas I would expect:

.
├── OUTPUT
│   └── some_file
├── template
│   └── some_file
└── template.toml

It does not look like it is implemented :)

Keats commented

It is implemented? The directory parameter work as expected from the example dir of kickstart