From 22349d88fbc8c447138166e9deba9be18e14efd8 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 00:45:25 +0000 Subject: [PATCH] Escape shell template literal interpolation cgen-25050a24b34b4963bcd155a3ef0c0517 --- client/pages/docs/DocsExamples.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/pages/docs/DocsExamples.tsx b/client/pages/docs/DocsExamples.tsx index f086dc7c..b743ed7f 100644 --- a/client/pages/docs/DocsExamples.tsx +++ b/client/pages/docs/DocsExamples.tsx @@ -96,7 +96,7 @@ export function ActivityOverlay() { code: `#!/usr/bin/env bash set -euo pipefail -WORKSPACE=${1:-"mods"} +WORKSPACE=\${1:-"mods"} npm install aethex login --token "$AETHEX_TOKEN" @@ -254,4 +254,4 @@ export default function DocsExamples() { ); -} \ No newline at end of file +}