Chromium Code Reviews| Index: appengine/swarming/swarming_rpcs.py |
| diff --git a/appengine/swarming/swarming_rpcs.py b/appengine/swarming/swarming_rpcs.py |
| index f8b454933794452ebe8fe8b2cb3d284716fd31e6..98c0a3bc738e3ccb5ddc9dd8c0562bc730a1984d 100644 |
| --- a/appengine/swarming/swarming_rpcs.py |
| +++ b/appengine/swarming/swarming_rpcs.py |
| @@ -90,6 +90,9 @@ class CipdPackage(messages.Message): |
| package_name = messages.StringField(1) |
| # Valid package version for all packages matched by package name. |
| version = messages.StringField(2) |
| + # Path to dir, relative to the run dir, where to install the package. |
|
M-A Ruel
2016/06/15 17:28:27
root dir?
because this can be confused with relati
nodir
2016/06/15 17:53:42
Done.
|
| + # If empty, the package will be installed in run dir. |
|
M-A Ruel
2016/06/15 17:28:27
in run dir?
will be installed a the root of the ma
nodir
2016/06/15 17:53:42
Done.
|
| + path = messages.StringField(3) |
| class CipdInput(messages.Message): |
| @@ -106,6 +109,7 @@ class CipdInput(messages.Message): |
| # CIPD package of CIPD client to use. |
| # client_package.version is required. |
| # This field is optional is default value is defined in the server config. |
| + # client_package.path is ignored. |
|
M-A Ruel
2016/06/15 17:28:27
must be empty
nodir
2016/06/15 17:53:42
Done.
|
| client_package = messages.MessageField(CipdPackage, 2) |
| # List of CIPD packages to install in $CIPD_PATH prior task execution. |