From 997d0aebbd0f748c6f586c3b6bdc2e1a978d85ca Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Thu, 16 Jul 2015 17:45:42 +0200 Subject: [PATCH] Beter message when installing --- scripts/module/qp_install_module.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/module/qp_install_module.py b/scripts/module/qp_install_module.py index 541fdf9f..1c9911a6 100755 --- a/scripts/module/qp_install_module.py +++ b/scripts/module/qp_install_module.py @@ -23,7 +23,7 @@ try: from module_handler import ModuleHandler, get_dict_child from module_handler import get_l_module_descendant from update_README import Doc_key, Needed_key - from qp_path import QP_SRC, QP_PLUGINS + from qp_path import QP_SRC, QP_PLUGINS, QP_ROOT except ImportError: print "Please check if you have sourced the .quantum_package.rc" print "(`source .quantum_package.rc`)" @@ -163,9 +163,11 @@ if __name__ == '__main__': subprocess.check_call(["qp_create_ninja.py", "update"]) except: raise - - print "Done" + + print "[ OK ]" print "You can now compile as usual" + print "`cd {0} ; ninja` for exemple".format(QP_ROOT) + print " or --in developement mode-- you can cd in a directory and compile here" elif arguments["uninstall"]: