Skip to content

Commit c80be19

Browse files
Fix leading slash exit in fuzz test
1 parent b0caeba commit c80be19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/run-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ done
6363
# If the fuzz directory exists, then tar it up in preparation to upload to S3.
6464
if [ -d $PROJECT_DIRECTORY/fuzz ]; then
6565
echo "Tarring up fuzz directory"
66-
tar -czf $PROJECT_DIRECTORY/fuzz.tgz $PROJECT_DIRECTORY/fuzz
66+
tar -czf $PROJECT_DIRECTORY/fuzz.tgz --absolute-names $PROJECT_DIRECTORY/fuzz
6767

6868
# Exit with code 1 to indicate that errors occurred in fuzz tests, resulting in corpus files being generated.
6969
# This will trigger a notification to be sent to the Go Driver team.

0 commit comments

Comments
 (0)