Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infra/experimental/contrib/arvo/hacks/wolfssl.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""WolfSSL project-specific hacks."""
"""http://www.apache.org/licenses/LICENSE-2.0"""

from . import ProjectHack

Expand All @@ -8,9 +9,8 @@ class WolfSSLHack(ProjectHack):

def apply_dockerfile_fixes(self, dft) -> bool:
"""Fix WolfSSL Dockerfile issues."""
# Replace gsutil cp command with a simple touch and zip
dft.str_replace(
'RUN gsutil cp '
'RUN wget '
'gs://wolfssl-backup.clusterfuzz-external.appspot.com/'
'corpus/libFuzzer/wolfssl_cryptofuzz-disable-fastmath/public.zip '
'$SRC/corpus_wolfssl_disable-fastmath.zip', "RUN touch 0xdeadbeef && "
Expand Down
Loading