Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| OLD | NEW |