diff options
| author | Dax Raad <[email protected]> | 2025-08-03 11:25:41 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-08-03 11:25:58 -0400 |
| commit | 99d3a0bb2431d00c1a60f350e57100a4ae1ac4db (patch) | |
| tree | 7f45082ec9ef18328a75568d6ac0526794949e1c | |
| parent | 0930f6ac55dba1f300ea7059f0329215785ef645 (diff) | |
| download | opencode-99d3a0bb2431d00c1a60f350e57100a4ae1ac4db.tar.gz opencode-99d3a0bb2431d00c1a60f350e57100a4ae1ac4db.zip | |
more fixes for shell 128 error
| -rw-r--r-- | packages/opencode/src/snapshot/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/snapshot/index.ts b/packages/opencode/src/snapshot/index.ts index d249830b0..2dd1c06fb 100644 --- a/packages/opencode/src/snapshot/index.ts +++ b/packages/opencode/src/snapshot/index.ts @@ -39,7 +39,7 @@ export namespace Snapshot { log.info("initialized") } await $`git --git-dir ${git} add .`.quiet().cwd(app.path.cwd).nothrow() - const hash = await $`git --git-dir ${git} write-tree`.quiet().cwd(app.path.cwd).text() + const hash = await $`git --git-dir ${git} write-tree`.quiet().cwd(app.path.cwd).nothrow().text() return hash.trim() } |
