2019-04-10 11:42:47 -04:00
|
|
|
#!/usr/bin/env python3
|
2020-05-04 12:02:26 -04:00
|
|
|
"""Stub file pointing users to the new invocation."""
|
2018-03-26 11:25:04 -04:00
|
|
|
|
2014-06-30 15:26:36 -04:00
|
|
|
if __name__ == "__main__":
|
2020-05-04 12:02:26 -04:00
|
|
|
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.")
|