1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-15 07:20:49 -05:00

Fix DEV_CERT_CONTENTS

This commit is contained in:
Justin Baur 2025-06-14 07:08:24 -04:00
parent 1e3db940a0
commit 5d5487b60a
No known key found for this signature in database

View File

@ -71,7 +71,7 @@ one_time_setup() {
# Make file for them
echo "Making $REPO_ROOT/dev/dev.pfx file for you based on DEV_CERT_CONTENTS environment variable."
# Assume content is base64 encoded
cat "$DEV_CERT_CONTENTS" | base64 -d > "$REPO_ROOT/dev/dev.pfx"
echo "$DEV_CERT_CONTENTS" | base64 -d > "$REPO_ROOT/dev/dev.pfx"
else
if [[ $allow_interactive -eq 1 ]]; then
read -r -p \