Skip to content

Commit 17bdefc

Browse files
author
Alexander Smirnov
committed
Fix syntax error in ubuntu yml
1 parent 618fd9a commit 17bdefc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/integration/docker/Dockerfile.echo.ubuntu

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ RUN apt-get update && \
1919
python${RUNTIME_VERSION}
2020

2121
# specific distutils package name for ubuntu24.04
22-
RUN if [ ${RUNTIME_VERSION} == "3.12" ] && [ ${DISTRO_VERSION} == "24.04" ]; \
23-
then \
24-
apt-get install -y python3-distutils-extra \
22+
RUN if [ ${RUNTIME_VERSION} == "3.12" ] && [ ${DISTRO_VERSION} == "24.04" ]; then \
23+
apt-get install -y python3-distutils-extra; \
2524
else \
26-
apt-get install -y python${RUNTIME_VERSION}-distutils \
25+
apt-get install -y python${RUNTIME_VERSION}-distutils; \
2726
fi
2827

2928
RUN ln -s /usr/bin/python${RUNTIME_VERSION} /usr/local/bin/python3

0 commit comments

Comments
 (0)