Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Unified Diff: src/scripts/start_devserver

Issue 1153005: Move the dev server script to src/scripts and remove the .sh extension. (Closed)
Patch Set: Rename to use underscore for consistency. Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698