Skip to content

Commit

Permalink
Fix file cleanup after cert generation (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored Nov 12, 2024
1 parent 978cae8 commit 4906c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/create_cert
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extendedKeyUsage=serverAuth" > "ca.ext"
-in "req-$CERTFILE" -out "$CERTFILE" \
-CAcreateserial -days 356 \
-extfile ca.ext
rm -f "req-$CERTFILT" "ca-$KEYFILE" ca.ext "ca-*.srl"
rm -f "req-$CERTFILE" "ca-$KEYFILE" ca.ext "ca-${CERTFILE%.pem}.srl"
echo "Add ca-$CERTFILE to your browser's trusted certificates"
fi

Expand Down

0 comments on commit 4906c3d

Please sign in to comment.