From 88a74329757e20e6ede9c71f4d40e606df2bf838 Mon Sep 17 00:00:00 2001 From: Koen van Staveren Date: Wed, 25 Sep 2024 21:56:32 +0200 Subject: [PATCH] fix: vrt:docker with git-bash (#3497) * fix: vrt:docker with git-bash * chore: release note --- bin/run-vrt | 2 +- upcoming-release-notes/3497.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 upcoming-release-notes/3497.md diff --git a/bin/run-vrt b/bin/run-vrt index 8e7c65d44b..dfdb44113d 100755 --- a/bin/run-vrt +++ b/bin/run-vrt @@ -28,5 +28,5 @@ echo "Running VRT tests with the following parameters:" echo "E2E_START_URL: $E2E_START_URL" echo "VRT_ARGS: $VRT_ARGS" -docker run --rm --network host -v "$(pwd)":/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.41.1-jammy /bin/bash \ +MSYS_NO_PATHCONV=1 docker run --rm --network host -v "$(pwd)":/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.41.1-jammy /bin/bash \ -c "E2E_START_URL=$E2E_START_URL yarn vrt $VRT_ARGS" diff --git a/upcoming-release-notes/3497.md b/upcoming-release-notes/3497.md new file mode 100644 index 0000000000..4c0922a550 --- /dev/null +++ b/upcoming-release-notes/3497.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [UnderKoen] +--- + +Fix running `yarn vrt:docker` on windows with git bash