Fixed a mistake in app installation command.

- In the app, installation step the provided command was wrong. 
- The command has been fixed.
- I also changed the example command to use version 13 of ERPNext instead of 12, as most will be working on v13.
This commit is contained in:
Safwan Erooth 2022-05-06 19:22:25 +05:30 committed by GitHub
parent 3926095d81
commit be056b6b2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,14 +173,14 @@ To install custom app
```shell ```shell
# --branch is optional, use it to point to branch on custom app repository # --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 bench --site mysite.localhost install-app myapp
``` ```
To install ERPNext (from the version-12 branch): To install ERPNext (from the version-13 branch):
```shell ```shell
bench get --branch version-12 erpnext bench get-app --branch version-13 erpnext
bench --site mysite.localhost install-app erpnext bench --site mysite.localhost install-app erpnext
``` ```