Skip to content

Commit 7c6b382

Browse files
committed
fix setup
1 parent b35cdae commit 7c6b382

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

scripts/install-flow.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ flow --version
1616

1717
flow config set tui false
1818
flow 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"

scripts/setup-workspaces.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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"
@@ -111,10 +110,8 @@ fi
111110
if [[ "${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
116114
else
117-
echo "🎯 Setting workspace: $first_workspace"
118115
flow workspace set "$WORKSPACE_NAME" 2>/dev/null || true
119116
fi
120117

0 commit comments

Comments
 (0)