Files
kubernetes/hack
Ismo Puustinen 173f8e2e4a hack/lib/golang.sh: use double quotes.
It's admittedly extremely unlikely that the host platform name would
contain special characters, but still use double quotes to pattern
matching.

Consider this script:

  #!/bin/bash

  bar="foobar"
  foo="foo*"

  [[ $bar == $foo ]] && echo "first true"
  [[ "$bar" == "$foo" ]] && echo "second true"

We get the output:

  first true

The plan is to move from first case to the second case to prevent
pattern match where there shouldn't be any.
2018-02-26 16:46:18 +02:00
..
2018-01-01 22:57:59 -08:00
2018-02-16 13:43:01 -08:00
2018-02-01 07:23:50 -08:00
2018-01-30 09:29:51 -08:00
2018-02-23 09:33:14 +08:00
2018-01-18 20:50:18 -05:00
2018-01-22 15:11:16 -08:00
2018-01-09 23:09:08 -08:00
2018-02-14 11:31:51 -08:00
2018-01-09 23:09:08 -08:00