@skill-harness/core 0.1.1 → 0.1.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/dist/workspace.js +1 -1
- package/package.json +1 -1
package/dist/workspace.js
CHANGED
|
@@ -7,7 +7,7 @@ const GIT_TIMEOUT_MS = 30_000;
|
|
|
7
7
|
function gitBaseline(cwd) {
|
|
8
8
|
execFileSync("git", ["init", "-q"], { cwd, timeout: GIT_TIMEOUT_MS });
|
|
9
9
|
execFileSync("git", ["add", "-A"], { cwd, timeout: GIT_TIMEOUT_MS });
|
|
10
|
-
execFileSync("git", ["-c", "user.email=
|
|
10
|
+
execFileSync("git", ["-c", "user.email=sh@local", "-c", "user.name=skill-harness", "commit", "-q", "--allow-empty", "-m", "baseline"], { cwd, timeout: GIT_TIMEOUT_MS });
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* Create an isolated temp-dir working directory for one scenario. `none` is an
|