Skip to content

Commit

Permalink
Fix submodules check in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
derlih committed Dec 22, 2020
1 parent 20609bf commit ad8f6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
NO_EXTENSIONS = True


if IS_GIT_REPO and not (HERE / "vendor/http-parser/README.md").exists():
if IS_GIT_REPO and not (HERE / "vendor/llhttp/README.md").exists():
print("Install submodules when building from git clone", file=sys.stderr)
print("Hint:", file=sys.stderr)
print(" git submodule update --init", file=sys.stderr)
Expand Down

0 comments on commit ad8f6d9

Please sign in to comment.