kubernetes/hack/lib
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
..
.gitattributes Capture git export-subst strings in version.sh for 'git archive' use. 2017-11-09 16:36:27 -08:00
BUILD cluster: move logging library to hack/ 2018-01-13 16:37:50 -08:00
etcd.sh Check if netstat or iproute2 is available 2018-02-14 10:33:04 -08:00
golang.sh hack/lib/golang.sh: use double quotes. 2018-02-26 16:46:18 +02:00
init.sh Unset CDPATH in build script to fix path generation 2018-02-22 01:12:02 -08:00
logging.sh cluster: move logging library to hack/ 2018-01-13 16:37:50 -08:00
protoc.sh Fixup after k8s.io/{kube-gen -> code-generator} rename 2017-08-17 17:55:12 +02:00
swagger.sh Switch to k8s.gcr.io vanity domain 2018-02-07 21:14:19 -08:00
test.sh Avoid error on closed pipe 2018-01-03 16:44:50 -05:00
util.sh Promote v1alpha1 meta to v1beta1 2018-02-02 14:00:45 -05:00
version.sh Build Kubernetes binaries with valid Semantic Version 2018-01-31 12:59:52 +08:00