mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-25 09:03:40 +00:00
d4e6ab4975
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
9 lines
171 B
Bash
Executable file
9 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd crates/collab
|
|
|
|
# Export contents of .env.toml
|
|
eval "$(cargo run --bin dotenv)"
|
|
|
|
cargo run --package=collab --features seed-support --bin seed -- $@
|