mirror of
https://github.com/logos-storage/logos-storage-local-harness.git
synced 2026-01-10 09:23:07 +00:00
14 lines
232 B
Bash
14 lines
232 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
LIB_SRC=${LIB_SRC:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}
|
||
|
|
|
||
|
|
# shellcheck source=./config.bash
|
||
|
|
source "${LIB_SRC}/config.bash"
|
||
|
|
|
||
|
|
clh_output_folder() {
|
||
|
|
echo "${OUTPUTS}/$1"
|
||
|
|
}
|
||
|
|
|
||
|
|
echoerr() {
|
||
|
|
echo "$@" >&2
|
||
|
|
}
|