Skip to content

Commit 2ab68ce

Browse files
committed
Remove timestamp from build artifact names
1 parent fc422f5 commit 2ab68ce

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

release/package.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ def main ():
4141
break
4242

4343
new_name = "openbcigui_" + version + "_"
44-
45-
timestamp = subprocess.check_output(['git', 'log', '-1', '--date=format:"%Y-%m-%d_%H-%M-%S"', '--format=%ad']).decode("utf-8").strip('"\n')
46-
new_name = new_name + timestamp + "_"
47-
4844
build_directory = os.path.join(os.getcwd(), flavors[LOCAL_OS])
4945

5046
# Allow GUI to launch from directory with spaces #916
@@ -60,7 +56,7 @@ def main ():
6056
with open(build_directory + '/OpenBCI_GUI', 'w') as file:
6157
file.write(filedata)
6258

63-
print ( "Fixed issue on Linux when launching from directory with spaces.")
59+
print ("Fixed issue on Linux when launching from directory with spaces.")
6460

6561
if LOCAL_OS == MAC:
6662
shutil.move(flavors[LOCAL_OS] + ".dmg", new_name + "macosx.dmg")

0 commit comments

Comments
 (0)