From 75b83237a0255478e35c30f0db90bfd0e3a674d0 Mon Sep 17 00:00:00 2001 From: Safwan Erooth Date: Sat, 7 May 2022 10:15:41 +0530 Subject: [PATCH] docs: fixed app installation command. (#802) - In the app installation step, the command has been fixed. - also changed the example command to use version 13 of ERPNext instead of 12 --- development/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/development/README.md b/development/README.md index d62805f7..7fee4f97 100644 --- a/development/README.md +++ b/development/README.md @@ -173,14 +173,14 @@ To install custom app ```shell # --branch is optional, use it to point to branch on custom app repository -bench get --branch version-12 https://github.com/myusername/myapp +bench get-app --branch version-12 https://github.com/myusername/myapp bench --site mysite.localhost install-app myapp ``` -To install ERPNext (from the version-12 branch): +To install ERPNext (from the version-13 branch): ```shell -bench get --branch version-12 erpnext +bench get-app --branch version-13 erpnext bench --site mysite.localhost install-app erpnext ```