Replies: 2 comments
|
Please try 'pnpm run clean' before build. |
0 replies
|
The The clean fix is to build from a clone: cd C:\Other\Code\DeekseepHardness
git clone https://github.com/deepseek-ai/deepseek-harness.git
cd deepseek-harness
pnpm install --frozen-lockfile
pnpm run buildIf you must build an extracted source archive, the script already provides an override. Set the full commit SHA that the archive came from: $env:DSH_CLIENT_COMMIT_HASH = "<full-commit-sha>"
pnpm run buildFor set DSH_CLIENT_COMMIT_HASH=<full-commit-sha>
pnpm run buildDo not invent a hash: it is written into the client build metadata. The relevant function prefers |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
C:\Other\Code\DeekseepHardness\deepseek-harness-master>pnpm run build
$ tsx scripts/build.ts
node:internal/errors:985
const err = new Error(message);
^
Error: Command failed: git rev-parse HEAD
at genericNodeError (node:internal/errors:985:15)
at wrappedFn (node:internal/errors:539:14)
at checkExecSyncError (node:child_process:925:11)
at execFileSync (node:child_process:961:15)
at repositoryCommitHash (C:\Other\Code\DeekseepHardness\deepseek-harness-master\scripts\client-build-environment.ts:52:29)
at repositoryClientBuildEnvironment (C:\Other\Code\DeekseepHardness\deepseek-harness-master\scripts\client-build-environment.ts:127:29)
at main (C:\Other\Code\DeekseepHardness\deepseek-harness-master\scripts\build.ts:38:33)
at (C:\Other\Code\DeekseepHardness\deepseek-harness-master\scripts\build.ts:52:23)
at ModuleJob.run (node:internal/modules/esm/module_job:439:25)
at async node:internal/modules/esm/loader:633:26 {
status: 128,
signal: null,
output: [ null, '', null ],
pid: 21388,
stdout: '',
stderr: null
}
Node.js v24.16.0
[ELIFECYCLE] Command failed with exit code 1.
All reactions