bosun 0.40.7 → 0.40.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bosun",
3
- "version": "0.40.7",
3
+ "version": "0.40.8",
4
4
  "description": "Bosun Autonomous Engineering — manages AI agent executors with failover, extremely powerful workflow builder, and a massive amount of included default workflow templates for autonomous engineering, creates PRs via Vibe-Kanban API, and sends Telegram notifications. Supports N executors with weighted distribution, multi-repo projects, and auto-setup.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -155,7 +155,7 @@ function execGitArgsSync(args, options = {}) {
155
155
  const gitArgs = args.map((arg) => String(arg));
156
156
  let lastEnoent = null;
157
157
  for (const gitBinary of resolveGitCandidates(env)) {
158
- if (gitBinary !== "git" && !existsSync(gitBinary)) continue;
158
+
159
159
  try {
160
160
  return execFileSync(gitBinary, gitArgs, {
161
161
  ...options,