mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
10 lines
187 B
Bash
Executable File
10 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd crates/collab
|
|
|
|
# Export contents of .env.toml
|
|
eval "$(cargo run --quiet --bin dotenv)"
|
|
|
|
cargo run --quiet --package=collab --features seed-support --bin seed -- $@
|