@@ -27,7 +27,9 @@ Targets:
27
27
elasticsearch versions to test or `latest`. Can filter tests by <clustername> and <testfilter>
28
28
* canary
29
29
- create a canary nuget package based on the current version.
30
- * diff <github|nuget|dir|assembly> <version|path 1> <version|path 2> [format]
30
+ * diff <..args>
31
+ - runs assembly-differ with the specified arguments
32
+ see: https://github.com/nullean/AssemblyDiffer#differ
31
33
* cluster <cluster-name> [version]
32
34
- Start a cluster defined in Tests.Core or Tests from the command line and leaves it running
33
35
untill a key is pressed. Handy if you want to run the integration tests numerous times while developing
@@ -188,27 +190,6 @@ module Commandline =
188
190
setBuildParam " clusterfilter" " ConnectionReuse"
189
191
setBuildParam " numberOfConnections" numberOfConnections
190
192
191
- | [ " diff" ; IsDiff diffType; IsProject project; firstVersionOrPath; secondVersionOrPath; IsFormat format] ->
192
- setBuildParam " diffType" diffType
193
- setBuildParam " project" project
194
- setBuildParam " first" firstVersionOrPath
195
- setBuildParam " second" secondVersionOrPath
196
- setBuildParam " format" format
197
- | [ " diff" ; IsDiff diffType; IsProject project; firstVersionOrPath; secondVersionOrPath] ->
198
- setBuildParam " diffType" diffType
199
- setBuildParam " project" project
200
- setBuildParam " first" firstVersionOrPath
201
- setBuildParam " second" secondVersionOrPath
202
- | [ " diff" ; IsDiff diffType; firstVersionOrPath; secondVersionOrPath; IsFormat format] ->
203
- setBuildParam " diffType" diffType
204
- setBuildParam " first" firstVersionOrPath
205
- setBuildParam " second" secondVersionOrPath
206
- setBuildParam " format" format
207
- | [ " diff" ; IsDiff diffType; firstVersionOrPath; secondVersionOrPath] ->
208
- setBuildParam " diffType" diffType
209
- setBuildParam " first" firstVersionOrPath
210
- setBuildParam " second" secondVersionOrPath
211
-
212
193
| [ " cluster" ; clusterName] ->
213
194
setBuildParam " clusterName" clusterName
214
195
setBuildParam " clusterVersion" " "
@@ -218,6 +199,7 @@ module Commandline =
218
199
219
200
| [ " touch" ; ] -> ignore()
220
201
| [ " temp" ; ] -> ignore()
202
+ | " diff" :: tail -> ignore()
221
203
| [ " canary" ; ] -> ignore()
222
204
| _ ->
223
205
traceError usage
0 commit comments