Commit 1d9822b6 authored by Mattia Rizzolo's avatar Mattia Rizzolo

useful messages if required files are missing

Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent 26141818
...@@ -33,11 +33,13 @@ def is_root_valid(path): ...@@ -33,11 +33,13 @@ def is_root_valid(path):
for dir in required_dirs: for dir in required_dirs:
dir = path / dir dir = path / dir
if not (dir.exists() and dir.is_dir()): if not (dir.exists() and dir.is_dir()):
print("The required directory %s does not exist" % dir)
return False return False
for file in required_files: for file in required_files:
file = path / file file = path / file
if not (file.exists() and file.is_file()): if not (file.exists() and file.is_file()):
print("The required file %s does not exist" % file)
return False return False
with (path / "version").open("r") as f: with (path / "version").open("r") as f:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment