blob: e4da359a6cbd0f8ebb476ce8daa2219ca215fce1 [file] [log] [blame]
#!/usr/bin/env python
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
def main():
print 'Good news, the shell runner has moved! Please use: '
print ''
print ' mojo/devtools/common/mojo_run'
print ''
print 'as you would use mojo_shell.py before.'
return -1
if __name__ == "__main__":
sys.exit(main())