Robert Kaussow
03ac4f17b0
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
207 B
Bash
11 lines
207 B
Bash
#!/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
|