diff --git a/README.md b/README.md index bf7147f6c5..0af51dd8a5 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,11 @@ We're open to expanding to new platforms (mobile, web, etc) but don't have the c ### Getting started -After cloning, run `scripts/clone.sh` for non-Windows systems, and `scripts/clone.ps1` for Windows -- On all platforms this clones any submodules via `git submodule update --init --recursive` -- Via the .sh file it will also disable the Windows-only editor via `git apply disable-windows-editor.patch` +After cloning or updating, +- on all platforms run `git submodule update --init --recursive` +- on non-Windows platforms, additionally run `git apply disable-windows-editor.patch` + +Before updating on non-Windows platforms, run `git apply -R disable-windows-editor.patch` ### Compiling diff --git a/scripts/clone.ps1 b/scripts/clone.ps1 deleted file mode 100644 index 5b5110f023..0000000000 --- a/scripts/clone.ps1 +++ /dev/null @@ -1 +0,0 @@ -git submodule update --init --recursive diff --git a/scripts/clone.sh b/scripts/clone.sh deleted file mode 100755 index 0c90600314..0000000000 --- a/scripts/clone.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -git submodule update --init --recursive - -git apply disable-windows-editor.patch