fix(docker): ensure correct variable used to install package

!8 fixes #9
This commit is contained in:
2024-02-22 14:46:52 +09:30
parent d0ef68c54d
commit 634eff3b3a

View File

@ -94,7 +94,7 @@ RUN mkdir -p /tmp/collection; \
if [ "$COLLECTION_PACKAGE" != "dev" ]; then \ if [ "$COLLECTION_PACKAGE" != "dev" ]; then \
echo "specified"; \ echo "specified"; \
ansible-galaxy collection install --force-with-deps --pre \ ansible-galaxy collection install --force-with-deps --pre \
$COLLECTION; \ $COLLECTION_PACKAGE; \
elif [ "$COLLECTION_PACKAGE" == "dev" ]; then \ elif [ "$COLLECTION_PACKAGE" == "dev" ]; then \
git clone \ git clone \
--depth=1 \ --depth=1 \