| Index: scripts/slave/cipd.py
|
| diff --git a/scripts/slave/cipd.py b/scripts/slave/cipd.py
|
| index e9524a4353ccb3582d15b974ed8feab603efda87..114392c4faa36d9719a8b068d4f3c7dbec506ad5 100755
|
| --- a/scripts/slave/cipd.py
|
| +++ b/scripts/slave/cipd.py
|
| @@ -30,6 +30,9 @@ LOGGER = logging.getLogger('cipd')
|
| # Used to contain a CIPD package specification.
|
| CipdPackage = collections.namedtuple('CipdPackage', ('name', 'version'))
|
|
|
| +# A CIPD binary description - relative path of the binary within the package.
|
| +CipdBinary = collections.namedtuple('CipdBinary', ('package', 'relpath'))
|
| +
|
|
|
| def bootstrap(path):
|
| bootstrap_path = os.path.join(common.env.Build, 'scripts', 'slave',
|
|
|