Skip to content

Commit 9b94827

Browse files
author
gau1991
committed
Fixed git name/eamil not set
1 parent dc0d5eb commit 9b94827

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ee/core/variables.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class EEVariables():
4646
except Exception as e:
4747
ee_user = input("Enter your name: ")
4848
ee_email = input("Enter your email: ")
49+
os.system("git config --global user.name {0}".format(ee_user))
50+
os.system("git config --global user.email {0}".format(ee_email))
4951

5052
# Get System RAM and SWAP details
5153
ee_ram = psutil.virtual_memory().total / (1024 * 1024)

0 commit comments

Comments
 (0)