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

Side by Side Diff: build/android/devil/constants/exit_codes.py

Issue 1412623009: [Android] Add CLI for flashing devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move exit codes Created 5 years 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 unified diff | Download patch
OLDNEW
1 #!/bin/sh
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 3 # found in the LICENSE file.
6 4
7 # Version = @@VERSION@@ 5 """Common exit codes used by devil."""
8 6
9 /usr/sbin/installer -pkg "$1/@@HOST_PKG@@.pkg" -target / 7 ERROR_EXIT_CODE = 1
jbudorick 2015/12/01 16:43:26 nit: just ERROR/INFRA/WARNING here. exit_codes.ERR
rnephew (Reviews Here) 2015/12/01 19:06:11 Done.
8 INFRA_EXIT_CODE = 87
9 WARNING_EXIT_CODE = 88
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698