Sergey Berezin | 6fee267 | 2017-05-01 15:31:16 -0700 | [diff] [blame] | 1 | # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | function cipd_bin_setup { |
| 6 | local MYPATH=$(dirname "${BASH_SOURCE[0]}") |
| 7 | |
Dan Jacques | eb1feb9 | 2017-07-28 13:04:28 +0200 | [diff] [blame] | 8 | "$MYPATH/cipd" ensure \ |
| 9 | -log-level warning \ |
| 10 | -ensure-file "$MYPATH/cipd_manifest.txt" \ |
Sergey Berezin | 6fee267 | 2017-05-01 15:31:16 -0700 | [diff] [blame] | 11 | -root "$MYPATH/.cipd_bin" |
| 12 | } |