kinode-dao/kit

bug: `kit new` creates duplicate folders

Closed this issue · 2 comments

Describe the bug
running kit new my_chat_app creates my_chat_app and send folders which have the same contents

To Reproduce

  1. run kit new my_chat_app
  2. get the following tree:
my_chat_app
    ├── Cargo.toml
    ├── metadata.json
    ├── my_chat_app
    │   ├── Cargo.toml
    │   └── src
    │       └── lib.rs
    ├── pkg
    │   ├── manifest.json
    │   └── scripts.json
    └── send
        ├── Cargo.toml
        └── src
            └── lib.rs

Expected behavior
probably only my_chat_app subfolder should exist

Desktop (please complete the following information):

  • OS: macOS
  • kit version: 0.4.1

maybe this is not a bug because I see scripts.json refers to send.wasm. if so, an explanation would be helpful so I can include in the docs

never mind, figured out that it's a script used in the tutorial.