From 0f022e6f8db2fa844696f6834d29fbc78b8f9e90 Mon Sep 17 00:00:00 2001 From: Todor Imreorov Date: Tue, 11 Sep 2018 21:46:44 +0100 Subject: [PATCH] Update git clone URL in build script and in readme (#633) --- newIDE/README.md | 4 ++-- scripts/gitCloneAndBuildGD.bat | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/newIDE/README.md b/newIDE/README.md index d4221a5a3d..5a927978f4 100644 --- a/newIDE/README.md +++ b/newIDE/README.md @@ -10,8 +10,8 @@ It uses GDevelop [core C++ classes compiled to Javascript](https://github.com/4i Make sure to have [Git](https://git-scm.com/) and [Node.js](https://nodejs.org) installed. [Yarn](https://yarnpkg.com) is optional. ```bash -git clone https://github.com/4ian/GD.git -cd GD/newIDE/app +git clone https://github.com/4ian/GDevelop.git +cd GDevelop/newIDE/app npm install #or yarn ``` diff --git a/scripts/gitCloneAndBuildGD.bat b/scripts/gitCloneAndBuildGD.bat index 9ef1f52671..b2e910e9a8 100644 --- a/scripts/gitCloneAndBuildGD.bat +++ b/scripts/gitCloneAndBuildGD.bat @@ -9,9 +9,10 @@ REM =============================================================== echo This will clone, install, and launch GDevelop development version. Please make sure you have git and Node.js installed. SET fork=4ian +SET project=GDevelop -call git clone https://github.com/%fork%/GD.git -cd GD/newIDE/app +call git clone https://github.com/%fork%/%project%.git +cd %project%/newIDE/app call npm install cd ../electron-app call npm install