This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
molecule/ec2-entrypoint.sh
Robert Kaussow 45a3ab13fe
All checks were successful
continuous-integration/drone/push Build is passing
fix entrypoint script permissions
2019-05-12 02:41:02 +02:00

11 lines
207 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