mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-03-18 05:55:46 +10:00
fix version file path
This commit is contained in:
2
setup.py
2
setup.py
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user