OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
John Grabowski
2012/07/10 03:45:34
Uh, one more thing.
I don't think this script shou
| |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # gcl wrapper to kick off nacl-sdk try jobs. | 7 set -eu |
John Grabowski
2012/07/10 03:43:44
A comment in this file is warranted. E.g. used fr
| |
8 | 8 |
9 readonly script_dir=$(dirname $0) | 9 buildtype="$(tr '[A-Z]' '[a-z]' <<< "${6}")" |
10 gcl try $* $(${script_dir}/sdktry-list.sh) | 10 |
11 exec "${1}" "${2}" "${3}" "${4}" "${5}" "${buildtype}" | |
OLD | NEW |