Browse Source

Fix gh fork command (#2442)

Chris Estreich 10 tháng trước cách đây
mục cha
commit
5fa555e60d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      evals/scripts/setup.sh

+ 1 - 1
evals/scripts/setup.sh

@@ -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