From 1a2d68f42a9d7e2cdf3424bbd06b0a99d7018983 Mon Sep 17 00:00:00 2001 From: Michael Irwin Date: Mon, 13 Jan 2025 11:17:05 -0500 Subject: [PATCH] Add whitespace=fix to patch apply docs for Windows support Resolves #21 --- demo/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/README.md b/demo/README.md index db1cb03..dfffcec 100644 --- a/demo/README.md +++ b/demo/README.md @@ -13,7 +13,7 @@ For an end-to-end demo, the project is slightly downgraded to use an older versi More talking points to come soon! ```console -git apply demo/e2e.patch +git apply --whitespace=fix demo/e2e.patch ``` ## Scout demo @@ -21,5 +21,5 @@ git apply demo/e2e.patch For a Scout demo, the following patch will adjust the Dockerfile to use an older base image and install an older version of Express, allowing you to demo out-of-date base images and vunlerable dependencies. ```console -git apply demo/scout.patch +git apply --whitespace=fix demo/scout.patch ```