bug: `kit new` creates duplicate folders
Closed this issue · 2 comments
jurij-jukic commented
Describe the bug
running kit new my_chat_app
creates my_chat_app
and send
folders which have the same contents
To Reproduce
- run
kit new my_chat_app
- 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
jurij-jukic commented
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
never mind, figured out that it's a script used in the tutorial.