openai/symphony
Publicmirrored fromhttps://github.com/openai/symphonyAvailable
.codex/worktree_init.sh
16lines · modecode
| 1 | #!/usr/bin/env bash |
| 2 | set -eo pipefail |
| 3 | |
| 4 | script_dir="$(cd "$(dirname "$0")" && pwd)" |
| 5 | repo_root="$(cd "$script_dir/.." && pwd)" |
| 6 | project_root="$repo_root/elixir" |
| 7 | |
| 8 | if ! command -v mise >/dev/null 2>&1; then |
| 9 | echo "mise is required. Install it from https://mise.jdx.dev/getting-started.html" >&2 |
| 10 | exit 1 |
| 11 | fi |
| 12 | |
| 13 | cd "$project_root" |
| 14 | mise trust |
| 15 | |
| 16 | make setup |
| 17 | |