Skip to content

Commit 0a33d92

Browse files
committed
Fix .DestinationPath on windows
1 parent 490ded8 commit 0a33d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tooling/docs-assembler/Deploying/AwsS3SyncPlanStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ await Parallel.ForEachAsync(localObjects, ctx, async (localFile, token) =>
6969
var addRequest = new AddRequest
7070
{
7171
LocalPath = localFile.FullName,
72-
DestinationPath = relativePath
72+
DestinationPath = relativePath.Replace('\\', '/')
7373
};
7474
addRequests.Add(addRequest);
7575
}

0 commit comments

Comments
 (0)