kinode-dao / kit

Development toolkit for Kinode OS
Apache License 2.0
11 stars 3 forks source link

bug: `kit new` creates duplicate folders #154

Closed jurij-jukic closed 1 month ago

jurij-jukic commented 1 month ago

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):

jurij-jukic commented 1 month ago

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

jurij-jukic commented 1 month ago

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