| Index: src/scripts/start_devserver
 | 
| diff --git a/src/platform/dev/start-devserver.sh b/src/scripts/start_devserver
 | 
| similarity index 62%
 | 
| rename from src/platform/dev/start-devserver.sh
 | 
| rename to src/scripts/start_devserver
 | 
| index 1b2fade973abc70b1104c7e1b95e5bc4ce58171b..d7f22e3244fc9dafc0b157dc569d6be2874dd862 100755
 | 
| --- a/src/platform/dev/start-devserver.sh
 | 
| +++ b/src/scripts/start_devserver
 | 
| @@ -1,16 +1,15 @@
 | 
|  #!/bin/bash
 | 
|  
 | 
| -# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
 | 
| +# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
 | 
|  # Use of this source code is governed by a BSD-style license that can be
 | 
|  # found in the LICENSE file.
 | 
|  
 | 
|  # Start the Dev Server after making sure we are running under a chroot.
 | 
|  
 | 
| -COMMON_SH="$(dirname "$0")/../../scripts/common.sh"
 | 
| +COMMON_SH="$(dirname "$0")/common.sh"
 | 
|  . "$COMMON_SH"
 | 
|  
 | 
|  # Script must be run inside the chroot.
 | 
|  assert_inside_chroot
 | 
|  
 | 
| -python devserver.py
 | 
| - 
 | 
| +cd ${GCLIENT_ROOT}/src/platform/dev && python devserver.py
 | 
| 
 |