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
2017-10-26 13:37:37 -07:00
2018-02-07 21:14:19 -08:00
2018-02-14 14:22:18 +01:00
2018-02-26 16:46:18 +02:00
2018-02-26 01:33:27 -05:00
2018-02-15 10:33:06 -05:00
2018-01-18 15:29:27 -08:00
2018-02-24 21:19:36 -08:00
2018-02-23 09:33:14 +08:00
2018-02-16 13:43:01 -08:00
2017-11-25 13:36:13 +08:00
2018-01-13 16:37:50 -08:00
2017-10-26 13:37:37 -07: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-02-20 14:42:19 -08:00
2017-11-21 19:21:10 -08:00
2018-02-24 21:53:51 -05:00
2018-01-18 20:50:18 -05:00
2018-02-08 21:12:03 -08:00
2018-02-22 11:02:02 +08:00
2018-01-22 15:11:16 -08:00
2018-02-16 13:41:43 -08:00
2018-01-09 23:09:08 -08:00
2018-02-14 11:31:51 -08:00
2018-02-08 17:04:43 -08:00
2017-10-26 13:37:37 -07:00
2018-02-08 01:29:56 +00:00
2018-02-08 01:00:38 +00:00
2018-02-23 18:09:06 +01:00
2018-02-07 09:06:26 +01:00
2018-02-02 14:00:45 -05:00
2017-11-22 09:38:17 -08:00
2018-01-17 02:43:58 -08:00
2017-10-18 11:15:08 -07:00
2018-02-07 21:39:38 -08:00
2018-02-07 21:41:31 -08:00
2018-01-09 23:09:08 -08:00
2017-10-19 00:21:57 +01:00
2017-11-09 12:14:07 +01:00
2018-02-08 17:04:43 -08:00
2017-10-26 13:37:37 -07:00
2018-02-08 01:29:56 +00:00
2018-01-09 15:18:27 -08:00
2018-02-07 09:06:26 +01:00
2017-10-13 07:09:38 -04:00
2018-02-07 21:45:02 -08:00
2018-02-15 13:30:30 -08:00
2018-02-07 21:39:49 -08:00
2017-10-25 16:53:26 +02:00
2018-02-14 10:31:33 -08:00
2017-11-21 13:00:40 -08:00
2018-02-23 09:33:14 +08:00
2018-01-26 13:29:35 -08:00
2018-02-14 10:31:33 -08:00