From bf1e746944547250d75bd297de727968b333022c Mon Sep 17 00:00:00 2001 From: Alex Lee <3076438032@qq.com> Date: Fri, 7 Mar 2025 12:29:44 +0800 Subject: [PATCH] fix: bug (#5446) --- frontend/providers/devbox/constants/scripts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/providers/devbox/constants/scripts.ts b/frontend/providers/devbox/constants/scripts.ts index 16c37e991b5..8fc25ba2473 100644 --- a/frontend/providers/devbox/constants/scripts.ts +++ b/frontend/providers/devbox/constants/scripts.ts @@ -127,7 +127,7 @@ if [ ! -f "\$SSH_CONFIG_FILE" ]; then fi if [ ! -s "\$SSH_CONFIG_FILE" ]; then - echo "Include \$CONFIG_FILE_TXT\\n" >> "\$SSH_CONFIG_FILE" + echo -e "Include \$CONFIG_FILE_TXT\\n" >> "\$SSH_CONFIG_FILE" else if ! grep -q "Include \$CONFIG_FILE_TXT" "\$SSH_CONFIG_FILE"; then temp_file="\$(mktemp)"