mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 21:16:02 +00:00
print dirs
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
be22111df5
commit
116e1eca8b
1 changed files with 3 additions and 0 deletions
|
@ -116,6 +116,9 @@ def _z3_version():
|
|||
print("z3_version", "release dir", RELEASE_DIR)
|
||||
if RELEASE_DIR is None:
|
||||
dirs = [SRC_DIR, ROOT_DIR, SRC_DIR_REPO, SRC_DIR_LOCAL, os.path.join(ROOT_DIR, '..', '..')]
|
||||
for d in dirs:
|
||||
if os.path.exists(d):
|
||||
print(d, ": ", os.listdir(d))
|
||||
fns = [os.path.join(d, 'VERSION.txt') for d in dirs]
|
||||
for fn in fns:
|
||||
print("loading version file", fn, "exists", os.path.exists(fn))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue