Browse code

Merge pull request #40370 from thaJeztah/bump_dependencies2

vendor: bump google/shlex b3f49c06ffaeef, beorn7/perks v1.0.1

Sebastiaan van Stijn authored on 2020/01/17 05:29:35
Showing 4 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 github.com/Azure/go-ansiterm                        d6e3b3328b783f23731bc4d058875b0371ff8109
2
-github.com/Microsoft/hcsshim                        b3f49c06ffaeef24d09c6c08ec8ec8425a0303e2
2
+github.com/Microsoft/hcsshim                        b3f49c06ffaeef24d09c6c08ec8ec8425a0303e2 # v0.8.7
3 3
 github.com/Microsoft/go-winio                       6c72808b55902eae4c5943626030429ff20f3b63 # v0.4.14
4 4
 github.com/docker/libtrust                          9cbd2a1374f46905c68a4eb3694a130610adc62a
5 5
 github.com/golang/gddo                              72a348e765d293ed6d1ded7b699591f14d6cd921
... ...
@@ -30,7 +30,7 @@ github.com/moby/buildkit                            4f4e03067523b2fc5ca2f17514a5
30 30
 github.com/tonistiigi/fsutil                        0f039a052ca1da01626278199624b62aed9b3729
31 31
 github.com/grpc-ecosystem/grpc-opentracing          8e809c8a86450a29b90dcc9efbf062d0fe6d9746
32 32
 github.com/opentracing/opentracing-go               1361b9cd60be79c4c3a7fa9841b3c132e40066a7
33
-github.com/google/shlex                             6f45313302b9c56850fc17f99e40caebce98c716
33
+github.com/google/shlex                             e7afc7fbc51079733e9468cdfd1efcd7d196cd1d
34 34
 github.com/opentracing-contrib/go-stdlib            b1a47cfbdd7543e70e9ef3e73d0802ad306cc1cc
35 35
 github.com/mitchellh/hashstructure                  2bca23e0e452137f789efbc8610126fd8b94f73b
36 36
 github.com/gofrs/flock                              392e7fae8f1b0bdbd67dad7237d23f618feb6dbb # v0.7.1
... ...
@@ -144,7 +144,7 @@ code.cloudfoundry.org/clock                         02e53af36e6c978af692887ed449
144 144
 
145 145
 # prometheus
146 146
 github.com/prometheus/client_golang                 c5b7fccd204277076155f10851dad72b76a49317 # v0.8.0
147
-github.com/beorn7/perks                             e7f67b54abbeac9c40a31de0f81159e4cafebd6a
147
+github.com/beorn7/perks                             37c8de3658fcb183f997c4e13e8337516ab753e6 # v1.0.1
148 148
 github.com/prometheus/client_model                  6f3806018612930941127f2a7c6c453ba2c527d2
149 149
 github.com/prometheus/common                        7600349dcfe1abd18d72d3a1770870d9800a7801
150 150
 github.com/prometheus/procfs                        7d6f385de8bea29190f15ba9931442a0eaef9af7
151 151
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+module github.com/beorn7/perks
1
+
2
+go 1.11
0 3
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+module github.com/google/shlex
1
+
2
+go 1.13
... ...
@@ -253,7 +253,6 @@ func (t *Tokenizer) scanStream() (*Token, error) {
253 253
 					}
254 254
 				case spaceRuneClass:
255 255
 					{
256
-						t.input.UnreadRune()
257 256
 						token := &Token{
258 257
 							tokenType: tokenType,
259 258
 							value:     string(value)}