From 5d5487b60a2bdfd34848f63f5f87ae7e9a1f010c Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Sat, 14 Jun 2025 07:08:24 -0400 Subject: [PATCH] Fix DEV_CERT_CONTENTS --- .devcontainer/internal_dev/postCreateCommand.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/internal_dev/postCreateCommand.sh b/.devcontainer/internal_dev/postCreateCommand.sh index cd8a007bcf..3fd278be26 100755 --- a/.devcontainer/internal_dev/postCreateCommand.sh +++ b/.devcontainer/internal_dev/postCreateCommand.sh @@ -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 \