diff --git a/bin/Update.py b/bin/Update.py index fe29c936..ab3abf26 100755 --- a/bin/Update.py +++ b/bin/Update.py @@ -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] diff --git a/update/current_version b/update/current_version deleted file mode 100644 index b1f74215..00000000 --- a/update/current_version +++ /dev/null @@ -1 +0,0 @@ -v1.4