From 798883d45d72f78ca779a9f67f2b951d975bee38 Mon Sep 17 00:00:00 2001 From: Chris Rapier Date: Thu, 2 May 2024 11:10:26 -0400 Subject: [PATCH] Update to build.sh file. (#11837) This is related to PR #11784. I didn't correctly understand how OSS-Fuzz was checking out commits from my repository. I had a "git pull --all" in my build file and that seems to have resulted in an error that ended the fuzzing run. This should resolve that problem. The only change is in commit 3d770f5. If there is a better way to update the project files please let me know. Thanks for your time --- projects/hpn-ssh/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hpn-ssh/build.sh b/projects/hpn-ssh/build.sh index df55060bc..1450de079 100644 --- a/projects/hpn-ssh/build.sh +++ b/projects/hpn-ssh/build.sh @@ -15,8 +15,8 @@ # ################################################################################ -git pull --all -git checkout oss_fuzz_tests +#git pull --all +#git checkout oss_fuzz_tests # Enable null cipher sed -i 's/#define CFLAG_INTERNAL.*/#define CFLAG_INTERNAL 0/' cipher.c