fix(go clean): Added missing flags

Added missing flags go clean -cache -testcache -modcache
This commit is contained in:
Adam S Levy 2018-08-27 11:57:08 -08:00
parent fe498e5eda
commit 5b53660969
1 changed files with 8 additions and 5 deletions

View File

@ -462,6 +462,9 @@ func main() {
"-r": complete.PredictNothing,
"-n": complete.PredictNothing,
"-x": complete.PredictNothing,
"-cache": complete.PredictNothing,
"-testcache": complete.PredictNothing,
"-modcache": complete.PredictNothing,
},
Args: complete.PredictOr(anyPackage, ellipsis),
}