Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions database/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,7 @@ def main():
create_schema(conn)
elif args.command == "jixia":
if not os.environ.get("JIXIA_PATH"):
raise SystemExit(
"JIXIA_PATH is not set. It must point at the jixia binary, e.g. "
"jixia/.lake/build/bin/jixia"
)
raise SystemExit("JIXIA_PATH is not set. It must point at the jixia binary, e.g. jixia/.lake/build/bin/jixia")
# jixia runs each module with cwd=project_root, so the module file
# path must be absolute — a relative root would be resolved twice.
project = LeanProject(os.path.abspath(args.project_root))
Expand Down
Loading