We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b35465 commit b968444Copy full SHA for b968444
src/test/integration/git.test.ts
@@ -174,7 +174,7 @@ const makeFileChanges = async (
174
recursive: true,
175
});
176
await fs.promises.symlink(
177
- path.join(repoDirectory, "README.md"),
+ "../README.md",
178
path.join(repoDirectory, "some-dir", "nested"),
179
);
180
await git.add({
@@ -192,7 +192,7 @@ const makeFileChanges = async (
192
if (changegroup === "with-changed-symlink") {
193
await fs.promises.rm(path.join(repoDirectory, "some-dir", "nested"));
194
195
- path.join(repoDirectory, "LICENSE"),
+ "../LICENSE",
196
197
198
}
0 commit comments