We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4c42d commit 9791d05Copy full SHA for 9791d05
1 file changed
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 new Promise<void>((resolve) => {
@@ -208,7 +208,7 @@ const makeFileChanges = async (
208
if (changegroup === "with-changed-symlink") {
209
await fs.promises.rm(path.join(repoDirectory, "some-dir", "nested"));
210
211
- path.join(repoDirectory, "LICENSE"),
+ "../LICENSE",
212
213
214
}
0 commit comments