1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix version file path

This commit is contained in:
Nick Sweeting 2019-04-27 21:08:40 -04:00
parent 4235b38009
commit b805df1416

View file

@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
script_dir = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
VERSION = open(os.path.join(script_dir, 'VERSION'), 'r').read().strip()
VERSION = open(os.path.join(script_dir, 'archivebox', 'VERSION'), 'r').read().strip()
try:
GIT_HEAD = open(os.path.join(script_dir, '.git', 'HEAD'), 'r').read().strip().split(': ')[1]
GIT_SHA = open(os.path.join(script_dir, '.git', GIT_HEAD), 'r').read().strip()[:9]