18 lines
235 B
Bash
Executable File
18 lines
235 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Renders tests/integration/integration_config.yml
|
|
|
|
set -e
|
|
set -o pipefail
|
|
set -u
|
|
|
|
function main()
|
|
{
|
|
readonly template="$1"; shift
|
|
readonly content="$(cat "$template")"
|
|
|
|
eval "echo \"$content\""
|
|
}
|
|
|
|
main "$@"
|