Robert Kaussow
7907b88f09
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
360 B
Bash
Executable File
16 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o pipefail
|
|
set -o errtrace
|
|
set -o nounset
|
|
set -o errexit
|
|
|
|
if [ "${MOLECULE_CUSTOM_MODULES_REPO}" ]; then
|
|
mkdir ./library/
|
|
git clone "$MOLECULE_CUSTOM_MODULES_REPO" ./library/
|
|
fi
|
|
|
|
if [ "${MOLECULE_CUSTOM_FILTERS_REPO}" ]; then
|
|
mkdir -p ./plugins/filters/
|
|
git clone "$MOLECULE_CUSTOM_FILTERS_REPO" ./plugins/filters/
|
|
fi
|