We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721fc2b commit d880f4cCopy full SHA for d880f4c
1 file changed
biflow_aggregator/tests/test.sh
@@ -46,9 +46,20 @@ run_test_with_global_timeout() {
46
}
47
48
script_path="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
49
+pwd
50
cd $script_path
51
52
success="true"
-mkdir -p outputs
53
+
54
+tmpdir=$(mktemp -d)
55
56
+trap "rm -rf \"$tmpdir\"" EXIT
57
58
+outputs="$tmpdir/outputs"
59
60
+mkdir -p "$outputs"
61
62
63
for input in inputs/input*; do
64
basename=$(basename "$input")
65
echo Found $basename
0 commit comments