Keats / kickstart

A scaffolding tool to get new projects up and running quickly
MIT License
359 stars 24 forks source link

The directory option does not work as intended #51

Open chevdor opened 3 years ago

chevdor commented 3 years ago

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 commented 3 years ago

It does not look like it is implemented :)

Keats commented 3 years ago

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