kickstart icon indicating copy to clipboard operation
kickstart copied to clipboard

The directory option does not work as intended

Open chevdor opened this issue 3 years ago • 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

chevdor avatar Jul 02 '21 18:07 chevdor

It does not look like it is implemented :)

chevdor avatar Jul 02 '21 19:07 chevdor

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

Keats avatar Jul 03 '21 10:07 Keats