mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 00:17:37 +01:00
b4b23946cd
GitOrigin-RevId: 9d997a9f44cd43a8dec7c2a17fa2dbcd875e92f6
14 lines
660 B
Python
Executable File
14 lines
660 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Stub file pointing users to the new invocation."""
|
|
|
|
if __name__ == "__main__":
|
|
print(
|
|
"Hello! It seems you've executed 'buildscripts/setup_multiversion_mongodb.py'. We have\n"
|
|
"moved the functionality into a standalone tool called `db-contrib-tool`. You can\n"
|
|
"install it with either `pip install db-contrib-tool`, or `pipx install db-contrib-tool`.\n"
|
|
"\n"
|
|
"The latter ensures the tool is in the global PATH. See installation instructions for `pipx`\n"
|
|
"here if you don't have it:\n"
|
|
"https://github.com/pypa/pipx#on-linux-install-via-pip-requires-pip-190-or-later"
|
|
)
|