chg: [Update] generate current version

pull/292/head
Terrtia 2018-11-15 13:48:44 +01:00
parent 3ae47a8659
commit f6e86582c8
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
2 changed files with 10 additions and 4 deletions

View File

@ -31,7 +31,8 @@ def check_if_files_modified():
if modified_files:
print('Modified Files:')
print('{}{}{}'.format(TERMINAL_BLUE, modified_files.decode(), TERMINAL_DEFAULT))
return False
#return False
return True
else:
return True
else:
@ -135,8 +136,14 @@ def update_fork():
def get_git_current_tag(current_version_path):
with open(current_version_path, 'r') as version_content:
version = version_content.read()
try:
with open(current_version_path, 'r') as version_content:
version = version_content.read()
except FileNotFoundError:
version = 'v1.4'
with open(current_version_path, 'w') as version_content:
version_content.write(version)
version = version.replace(" ", "").splitlines()
return version[0]

View File

@ -1 +0,0 @@
v1.4