mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-25 17:13:05 +00:00
1995bd89a6
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
14 lines
249 B
Bash
Executable file
14 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install sqlx-cli if needed
|
|
[[ "$(sqlx --version)" == "sqlx-cli 0.5.7" ]] || cargo install sqlx-cli --version 0.5.7
|
|
|
|
cd crates/server
|
|
|
|
# Export contents of .env.toml
|
|
eval "$(cargo run --bin dotenv)"
|
|
|
|
# Run sqlx command
|
|
sqlx $@
|