Skip to content

Commit 63b2001

Browse files
committed
openssl: Don't git clean in a cache build.
Otherwise we lose all of our configure results and build artifacts.
1 parent 2f05cb9 commit 63b2001

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

projects/openssl/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ function build_fuzzers() {
7878
fi
7979

8080
df -h
81-
git clean -dfx
81+
if [[ -z "${CAPTURE_REPLAY_SCRIPT:-}" ]]; then
82+
git clean -dfx
83+
fi
8284
df -h
8385
}
8486

0 commit comments

Comments
 (0)