Spaces:
Runtime error
Runtime error
File size: 238 Bytes
85e3d20 |
1 2 3 4 5 6 7 8 9 10 |
#!/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"
|