fix: fix wrong variable name for extra_requirement for pip extra requirements

This commit is contained in:
Muhammad Faraz Maqsood 2023-11-02 14:15:27 +05:00 committed by Muhammad Faraz Maqsood
parent a9bc26a134
commit bfc057bbf6
3 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1 @@
- [BugFix] Corrected variable name for installing pip extra requirements. (by @Faraz32123)

View File

@ -1,4 +1,4 @@
__version__ = "16.0.1"
__version__ = "16.0.2"
__package_version__ = __version__
# Handle version suffix for nightly, just like tutor core.

View File

@ -98,7 +98,7 @@ RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,
&& touch ./private.txt \
&& pip install -r ./private.txt
{% for extra_requirement in CREDENTIALS_EXTRA_PIP_REQUIREMENTS %}RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install '{{ extra_requirements }}'
{% for extra_requirement in CREDENTIALS_EXTRA_PIP_REQUIREMENTS %}RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/openedx/.cache/pip,sharing=shared {% endif %}pip install '{{ extra_requirement }}'
{% endfor %}
###### Install nodejs with nodeenv in /openedx/nodeenv