Skip to content

Commit

Permalink
Create the results directory if it does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
xuganyu96 committed Dec 11, 2023
1 parent 7565906 commit 9865622
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions marvin-toolkit/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ mv rsa${size} keys # Keys generated under rsa${size}/
echo

# Generate ciphertexts
if [ ! -d "results" ]; then
mkdir -p "results"
fi
PYTHONPATH=tlsfuzzer ./marvin-venv/bin/python ./step2.py \
-c keys/cert.pem -o results \
--repeat 100000 --verbose \
Expand Down

0 comments on commit 9865622

Please sign in to comment.