mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
19 lines
446 B
Python
Executable File
19 lines
446 B
Python
Executable File
#!/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_shell'
|
|
print ''
|
|
print 'as you would use mojo_shell.py before.'
|
|
return -1
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|