From c6d422d01045993028ba25b20ef2f2ceecbf4c7e Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Tue, 27 Jan 2015 17:43:08 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f300886..3a8e1ee5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ee --help How to install this version on your system?? ```bash sudo apt-get update -sudo apt-get install python3 python3-apt python3-setuptools python3-dev git +sudo apt-get -y install python3 python3-apt python3-setuptools python3-dev git git clone -b python https://github.com/rtCamp/easyengine.git cd easyengine sudo python3 setup.py install From b82929f0fdf34b3c8a030ceae0360e7b4228a949 Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Tue, 27 Jan 2015 18:04:52 +0530 Subject: [PATCH 2/2] Better Message for git user.name and user.email --- ee/core/variables.py | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ee/core/variables.py b/ee/core/variables.py index a2de82bd..ade26d28 100644 --- a/ee/core/variables.py +++ b/ee/core/variables.py @@ -44,8 +44,8 @@ class EEVariables(): ee_user = config['user']['name'] ee_email = config['user']['email'] except Exception as e: - ee_user = input("Enter username for Git:") - ee_email = input("Enter email for Git:") + ee_user = input("Enter your name: ") + ee_email = input("Enter your email: ") # Get System RAM and SWAP details ee_ram = psutil.virtual_memory().total / (1024 * 1024) diff --git a/setup.py b/setup.py index eeacb4a2..81050f6f 100644 --- a/setup.py +++ b/setup.py @@ -37,8 +37,8 @@ except Exception as e: "upcoming version") print("EasyEngine (ee) will NEVER send your information across") - ee_user = input("Enter username for Git:") - ee_email = input("Enter email for Git:") + ee_user = input("Enter your name: ") + ee_email = input("Enter your email: ") os.system("git config --global user.name {0}".format(ee_user)) os.system("git config --global user.email {0}".format(ee_email))