From c1496fb8ebb6802d9422a1aac6bf8806e1d8c4c4 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Wed, 30 May 2018 09:16:20 -0400 Subject: [PATCH] fix windows delete statement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e745e758..8826ff10b 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ distributable packages. #### Resetting your Packages -If the app isn't building, or `yarn xxx` commands aren't working you may need to just reset your `node_modules`. To do so you can run: `rm -r node_modules && yarn` or `del node_modules && yarn` on Windows. +If the app isn't building, or `yarn xxx` commands aren't working you may need to just reset your `node_modules`. To do so you can run: `rm -r node_modules && yarn` or `del /s /q node_modules && yarn` on Windows. ## Contributing