We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62498de commit 0708312Copy full SHA for 0708312
src/shared/localShadowRepo.ts
@@ -198,7 +198,7 @@ export class ShadowRepo extends AsyncCreatable<ShadowRepoOptions> {
198
// these are stored in posix/style/path format. We have to convert inbound stuff from windows
199
if (os.type() === 'Windows_NT') {
200
deployedFiles = deployedFiles.map((filepath) => path.normalize(filepath).split(path.sep).join(path.posix.sep));
201
- deployedFiles = deletedFiles.map((filepath) => path.normalize(filepath).split(path.sep).join(path.posix.sep));
+ deletedFiles = deletedFiles.map((filepath) => path.normalize(filepath).split(path.sep).join(path.posix.sep));
202
}
203
204
try {
0 commit comments