blob: aadf048dd223e3109bd17644eee3d0943b83bd85 [file] [log] [blame]
Sergey Berezin6fee2672017-05-01 15:31:16 -07001# 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
5function cipd_bin_setup {
6 local MYPATH=$(dirname "${BASH_SOURCE[0]}")
7
Dan Jacqueseb1feb92017-07-28 13:04:28 +02008 "$MYPATH/cipd" ensure \
9 -log-level warning \
10 -ensure-file "$MYPATH/cipd_manifest.txt" \
Sergey Berezin6fee2672017-05-01 15:31:16 -070011 -root "$MYPATH/.cipd_bin"
12}