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

Unified Diff: crosh-workarounds

Issue 6597082: Remove obsolete channel_change and mkcrosusb commands. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/workarounds.git@master
Patch Set: Created 9 years, 10 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 | « channel_change ('k') | mkcrosusb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crosh-workarounds
diff --git a/crosh-workarounds b/crosh-workarounds
index 9bd4b4c191281be2bd1fd93951bf54023f739adf..8e574b4a3cef4befb1e3c6f5393e44e1161858f8 100755
--- a/crosh-workarounds
+++ b/crosh-workarounds
@@ -9,44 +9,6 @@ if [ "$(basename $0)" = "crosh-workarounds" ]; then
exec "$(dirname $0)/crosh" --workarounds
fi
-HELP="$HELP"'
- mkcrosusb [-dev|-beta|-rcdev|-rcbeta]
- Creates and installs USB stick with preferred build.
-'
-cmd_mkcrosusb() {
- local mkcrosusb="/usr/bin/mkcrosusb"
- if [ ! -f $mkcrosusb ]; then
- echo "Missing $mkcrosusb" >&2
- else
- case "$1" in
- -dev|-beta|-rcdev|-rcbeta|'')
- $mkcrosusb $1
- ;;
- *)
- echo "Usage: mkcrosusb [-dev|-beta|-rcdev|-rcbeta]" >&2
- esac
- fi
-}
-
-HELP="$HELP"'
- channel_change [--dev|--beta]
- Changes the channel from dev to beta and vice versa.
-'
-cmd_channel_change() {
- local channel_change="/usr/bin/channel_change"
- if [ ! -f $channel_change ]; then
- echo "Missing $channel_change" >&2
- else
- case "$1" in
- --dev|--beta)
- $channel_change $1
- ;;
- *)
- echo "Usage: channel_change [--dev|--beta]" >&2
- esac
- fi
-}
-
# Allow users to set the autoproxy used by Chrome.
# TODO: This option should be removed once proxy settings are available in the
# UI. The value set in the default_proxy file is passed to chrome as an
« no previous file with comments | « channel_change ('k') | mkcrosusb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698