vibe-forge 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/forge-spawn.sh +2 -2
- package/package.json +1 -1
package/bin/forge-spawn.sh
CHANGED
|
@@ -52,9 +52,9 @@ spawn_windows_terminal() {
|
|
|
52
52
|
# SECURITY: $agent has already been validated through resolve_agent
|
|
53
53
|
if [[ -n "$GIT_BASH_PATH" ]]; then
|
|
54
54
|
local bash_path="${GIT_BASH_PATH//\//\\}"
|
|
55
|
-
wt.exe new-tab --title "$display_name" "$bash_path" -c "cd '$FORGE_ROOT' && ./bin/forge.sh start '$agent'"
|
|
55
|
+
wt.exe -w 0 new-tab --title "$display_name" "$bash_path" -c "cd '$FORGE_ROOT' && ./bin/forge.sh start '$agent'"
|
|
56
56
|
else
|
|
57
|
-
wt.exe new-tab --title "$display_name" bash -c "cd '$FORGE_ROOT' && ./bin/forge.sh start '$agent'"
|
|
57
|
+
wt.exe -w 0 new-tab --title "$display_name" bash -c "cd '$FORGE_ROOT' && ./bin/forge.sh start '$agent'"
|
|
58
58
|
fi
|
|
59
59
|
log_success "$display_name spawned in new Windows Terminal tab"
|
|
60
60
|
else
|