| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-08-20 | Add check of error in int slice test | bogem | |
| 2015-08-15 | Fix up minor things found by goreportcard.com | Eric Paris | |
| 2015-08-14 | typo | Rick Olson | |
| 2015-08-12 | Do not append to default values in {String,Int}Slice | Eric Paris | |
| I added the ability to do: `-s=bob -s=john` and get `[]string{"bob", "john"}` But if a default value was set to say `[]string{"eric"}` the above operation was mistakenly resulting in: `[]string{"eric", "bob", "john"} which was obviously not what was intended. This is fixed by tracking if a value was parsed and overwriting the default on the first time -s is found, but we append the 2+ time. | |||
| 2015-08-05 | Empty slices should be empty, not have a single (empty) string | Eric Paris | |
| 2015-08-05 | String and Int slices called twice should append not overwrite | Eric Paris | |
| This allows users to do things like ``` cmd --filename=file1 --filename=file2 --filename=file3,file4 ``` And internally we will get ``` []string{"file1", "file2", "file3", "file4"} ``` | |||
| 2015-06-22 | Tests for GetIntSlice and GetStringSlice | Eric Paris | |
| 2015-06-22 | Much like stringSlice, add intSlice flag type | Eric Paris | |
