Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:
cdk synth
creates incorrect file paths on Windows (#880)
Fixes #877 The complaint is that we are created file paths like `./cdk.out/assembly-OnstageCms\publish-Assets-FileAsset5-step.sh`. This is due to `path.join` defaulting to the system's separator (on windows, `\`). But GitHub actions use the posix version `/`. Instead, we should be using `path.posix.join`.
- Loading branch information