aboutsummaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-03-21 07:02:30 -0700
committerGitHub <noreply@github.com>2021-03-21 07:02:30 -0700
commit0fba276516072c29462d67883f8823e227e387cd (patch)
tree4846f0a3955528942d105e8f7094c5f5c536f042 /infra
parent2e64b7a1cf12527d8e1d6d661ecf4d28225c887f (diff)
downloadoss-fuzz-0fba276516072c29462d67883f8823e227e387cd.tar.gz
[NFC][base-builder] Fix order so comment is in right place (#5445)
Diffstat (limited to 'infra')
-rw-r--r--infra/base-images/base-builder/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/base-images/base-builder/Dockerfile b/infra/base-images/base-builder/Dockerfile
index 9c9ffec22..ad7ab08a9 100644
--- a/infra/base-images/base-builder/Dockerfile
+++ b/infra/base-images/base-builder/Dockerfile
@@ -57,8 +57,8 @@ RUN export PYTHON_DEPS="\
ln -s /usr/bin/python3 /usr/bin/python && \
cd .. && \
rm -r /tmp/Python-$PYTHON_VERSION.tar.xz /tmp/Python-$PYTHON_VERSION && \
- apt-get remove -y $PYTHON_DEPS && \
- rm -rf /usr/local/lib/python3.8/test # https://github.com/google/oss-fuzz/issues/3888
+ rm -rf /usr/local/lib/python3.8/test && \
+ apt-get remove -y $PYTHON_DEPS # https://github.com/google/oss-fuzz/issues/3888
# Install latest atheris for python fuzzing, pyinstaller for fuzzer packaging,
# six for Bazel rules.