new-test-autoresearch / copy_task.sh
Teerth Patel
initial commit
199a42f
raw
history blame contribute delete
238 Bytes
#!/bin/bash
task=$1
if [[ -e "/app/workspaces/$task" ]]; then
rm -rf "/app/workspaces/$task"
fi
cp -r "/app/benchmarks/$task/env" "/app/workspaces/$task"
cp "/app/benchmarks/$task/scripts/research_problem.txt" "/app/problems/$task"