From 9915853e39b47533b5c23bcddd1c6087e6b9e00c Mon Sep 17 00:00:00 2001 From: Samiran Saha Date: Tue, 18 Nov 2025 01:06:53 +0530 Subject: [PATCH] remove python temp --- mac/user-interaction.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mac/user-interaction.sh b/mac/user-interaction.sh index ecba65d..6cd95cd 100644 --- a/mac/user-interaction.sh +++ b/mac/user-interaction.sh @@ -37,11 +37,11 @@ get_browserstack_credentials() { get_tech_stack() { local run_mode=$1 local tech_stack="" - if [[ "$RUN_MODE" == *"--silent"* || "$RUN_MODE" == *"--debug"* ]]; then + if [[ "$run_mode" == *"--silent"* || "$run_mode" == *"--debug"* ]]; then tech_stack="$TSTACK" log_msg_to "✅ Selected Tech Stack from environment: $tech_stack" else - tech_stack=$(osascript -e 'Tell application "System Events" to display dialog "Select installed tech stack:" buttons {"java", "python", "nodejs"} default button "java" with title "Testing Framework Technology Stack"' \ + tech_stack=$(osascript -e 'Tell application "System Events" to display dialog "Select installed tech stack:" buttons {"java", "nodejs"} default button "java" with title "Testing Framework Technology Stack"' \ -e 'button returned of result') fi log_msg_to "✅ Selected Tech Stack: $tech_stack"