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"
|
|
|
|
|
"repackaged the setup multiversion as a subcommand of resmoke. It can now be invoked as\n"
|
|
|
|
|
"'./buildscripts/resmoke.py setup-multiversion' with all of the same arguments as before.\n"
|
|
|
|
|
"Please use './buildscripts/resmoke.py setup-multiversion --help' for more details.")
|