@tritard/waterbrother 0.5.6 → 0.5.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "Waterbrother: Grok-powered coding CLI with local tools, sessions, operator modes, and approval controls",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -2344,7 +2344,7 @@ async function checkBinary(binary) {
2344
2344
  async function runExecStep(command, args, { cwd }) {
2345
2345
  try {
2346
2346
  const { stdout, stderr } = await execFileAsync(command, args, {
2347
- cwd: installRoot,
2347
+ cwd,
2348
2348
  env: process.env,
2349
2349
  maxBuffer: 8 * 1024 * 1024
2350
2350
  });