File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ flow --version
1616
1717flow config set tui false
1818flow config set log-mode text
19- flow config set timeout " ${TIMEOUT: 30m} "
19+ flow config set timeout " ${TIMEOUT: ' 30m' } "
2020
2121
22- echo " ✅ Flow CLI installed successfully"
22+ echo " ✅ flow CLI installed successfully"
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ register_workspace() {
3939 workspace_path=" $( pwd) /$workspace_path "
4040 fi
4141
42- echo " 📝 Registering workspace: $workspace_name -> $workspace_path "
4342 flow workspace create " $workspace_name " " $workspace_path " 2> /dev/null || true
4443
4544 echo " $workspace_name "
111110if [[ " ${EXECUTABLE_INPUT:- } " == * " /" * ]]; then
112111 # Extract workspace from executable reference (e.g., "build backend/api:service")
113112 primary_workspace=$( echo " $EXECUTABLE_INPUT " | cut -d' /' -f1)
114- echo " 🎯 Setting workspace from executable: $primary_workspace "
115113 flow workspace set " $primary_workspace " 2> /dev/null || true
116114else
117- echo " 🎯 Setting workspace: $first_workspace "
118115 flow workspace set " $WORKSPACE_NAME " 2> /dev/null || true
119116fi
120117
You can’t perform that action at this time.
0 commit comments