Fix gh fork command (#2442)

This commit is contained in:
Chris Estreich 2025-04-09 13:12:55 -07:00 committed by GitHub
parent 6d9ebe3fcf
commit 5fa555e60d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -280,7 +280,7 @@ if [[ ! -d "../../evals" ]]; then
read -p "🔗 Would you like to be able to share eval results? (Y/n): " fork_evals
if [[ "$fork_evals" =~ ^[Yy]|^$ ]]; then
gh repo fork cte/evals ../../evals || exit 1
gh repo fork cte/evals --clone ../../evals || exit 1
else
gh repo clone cte/evals ../../evals || exit 1
fi