How to download version not develop

Hello for all ERP and frappe experts out there…

How can I specify the version when downloading an app on my ERPNext site…?

For example, when I tried to download the Raven app, I used the following command:

git clone GitHub - The-Commit-Company/raven: Simple, open source team messaging platform

However, I realized that it downloaded the development version instead of a specific version. This applies to all other apps as well.

use this command in terminal

bench get-app https://github.com/The-Commit-Company/raven.git

bench --site <yoursite.name> install-app raven

1 Like

Now you have installed it, you can switch the branch of the app using bench switch-to-branch branch_name app_name
https://frappeframework.com/docs/user/en/bench/bench-commands

1 Like