2019-04-10 11:42:47 -04:00
|
|
|
#!/usr/bin/env python3
|
2020-12-04 10:42:50 +03:00
|
|
|
"""Stub file pointing users to the new invocation."""
|
2013-03-05 10:39:10 -05:00
|
|
|
|
2017-10-18 16:01:10 -04:00
|
|
|
if __name__ == "__main__":
|
2020-12-04 10:42:50 +03:00
|
|
|
print(
|
|
|
|
|
"Hello! It seems you've executed 'buildscripts/setup_multiversion_mongodb.py'. We have\n"
|
2022-01-27 17:25:24 +00:00
|
|
|
"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"
|
2024-05-16 18:00:17 -04:00
|
|
|
"https://github.com/pypa/pipx#on-linux-install-via-pip-requires-pip-190-or-later"
|
|
|
|
|
)
|