@kylecheng3146/agent-ops 0.1.10 → 0.1.11
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.
|
@@ -64,7 +64,6 @@ export async function collectChangeSurface(runner) {
|
|
|
64
64
|
"diff",
|
|
65
65
|
"--cached",
|
|
66
66
|
"--name-only",
|
|
67
|
-
"--full-name",
|
|
68
67
|
"--no-renames",
|
|
69
68
|
"--no-ext-diff",
|
|
70
69
|
"--no-textconv",
|
|
@@ -73,7 +72,6 @@ export async function collectChangeSurface(runner) {
|
|
|
73
72
|
const unstaged = await collectPaths(runner, [
|
|
74
73
|
"diff",
|
|
75
74
|
"--name-only",
|
|
76
|
-
"--full-name",
|
|
77
75
|
"--no-renames",
|
|
78
76
|
"--no-ext-diff",
|
|
79
77
|
"--no-textconv",
|
|
@@ -116,7 +114,7 @@ export async function resolveGitCommit(runner, ref) {
|
|
|
116
114
|
}
|
|
117
115
|
export async function collectBaseChangePaths(runner, base) {
|
|
118
116
|
return await collectPaths(runner, [
|
|
119
|
-
"diff", "--name-only", "--
|
|
117
|
+
"diff", "--name-only", "--no-renames", "--no-ext-diff",
|
|
120
118
|
"--no-textconv", "-z", `${base}...HEAD`
|
|
121
119
|
]);
|
|
122
120
|
}
|