openai/symphony

Public

mirrored fromhttps://github.com/openai/symphonyAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bbef62364db25970cf0e732fc61011ab753d2604

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.codex/worktree_init.sh

16lines · modecode

1#!/usr/bin/env bash
2set -eo pipefail
3
4script_dir="$(cd "$(dirname "$0")" && pwd)"
5repo_root="$(cd "$script_dir/.." && pwd)"
6project_root="$repo_root/elixir"
7
8if ! 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
11fi
12
13cd "$project_root"
14mise trust
15
16make setup
17