OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import os | 6 import os |
7 import signal | 7 import signal |
8 import shutil | 8 import shutil |
9 import subprocess | 9 import subprocess |
10 import sys | 10 import sys |
(...skipping 12 matching lines...) Expand all Loading... |
23 if len(sys.argv) < 2: | 23 if len(sys.argv) < 2: |
24 print 'usage: start_dev_server.py <location of dev_appserver.py> [options]' | 24 print 'usage: start_dev_server.py <location of dev_appserver.py> [options]' |
25 exit(0) | 25 exit(0) |
26 | 26 |
27 signal.signal(signal.SIGINT, CleanUp) | 27 signal.signal(signal.SIGINT, CleanUp) |
28 | 28 |
29 build_server.main() | 29 build_server.main() |
30 for filename in FILENAMES: | 30 for filename in FILENAMES: |
31 shutil.copy(os.path.join(SERVER_PATH, filename), | 31 shutil.copy(os.path.join(SERVER_PATH, filename), |
32 os.path.join(SRC_PATH, filename)) | 32 os.path.join(SRC_PATH, filename)) |
33 args = sys.argv[1:] | 33 args = [sys.executable] + sys.argv[1:] + [SRC_PATH] |
34 args.append(SRC_PATH) | |
35 subprocess.call(args) | 34 subprocess.call(args) |
OLD | NEW |