21 lines
225 B
Bash
Executable File
21 lines
225 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# script to do the thing
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
(
|
|
|
|
mkdir -p logs
|
|
poetry --version
|
|
|
|
./01-run_make_configs.sh
|
|
|
|
./02-run_gen.sh
|
|
|
|
# ./03-run_probs.sh
|
|
./04-cleanup-probs.sh
|
|
|
|
) 2>&1 | tee -a output.log
|