0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/buildscripts/hang_analyzer.py
Steve McClure b4b23946cd SERVER-90570: Enable formatting checks for buildscripts directory, excluding idl (#22254)
GitOrigin-RevId: 9d997a9f44cd43a8dec7c2a17fa2dbcd875e92f6
2024-05-16 22:07:36 +00:00

10 lines
404 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/hang_analyzer.py'. We have recently\n"
"repackaged the hang analyzer as a subcommand of resmoke. It can now be invoked as\n"
"'./buildscripts/resmoke.py hang-analyzer' with all of the same arguments as before."
)