11 lines
188 B
Bash
Executable file
11 lines
188 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
dir=$(dirname "$0")
|
|
|
|
export BABASHKA_POD=true
|
|
|
|
if [[ $BABASHKA_TEST_ENV == "native" ]]; then
|
|
exec "${dir}"/../bb "${dir}"/pod.clj
|
|
else
|
|
exec clojure -M:test-pod
|
|
fi
|