2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-13 16:56:33 +00:00
This commit is contained in:
Rushabh Mehta 2016-07-26 08:53:21 +05:30
parent 2e2ff56d0a
commit 40e2df9f2a

View File

@ -18,7 +18,9 @@ def execute(bench_path):
node_ver = Version(result.rstrip('\n').lstrip('v')) node_ver = Version(result.rstrip('\n').lstrip('v'))
if node_ver < expected_node_ver: if node_ver < expected_node_ver:
click.echo('\nPlease update node version to 5.x before running "bench update".\n' click.echo('''Please update node version to 5.x before running "bench update".
'Installation instructions for CentOS and Ubuntu can be found on the following link,\n 'Installation instructions for CentOS and Ubuntu can be found on the following link,
'"https://www.metachris.com/2015/10/how-to-install-nodejs-5-on-centos-and-ubuntu/"\n\n') '"https://www.metachris.com/2015/10/how-to-install-nodejs-5-on-centos-and-ubuntu/"
''')
sys.exit(1) sys.exit(1)