1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 15:24:32 +00:00

Add tty and half way broken state handling

This commit is contained in:
Darren Shepherd
2015-02-16 16:38:49 -07:00
parent 3ab1f76ef0
commit 925a847ccc
11 changed files with 96 additions and 70 deletions

View File

@@ -105,8 +105,8 @@ func Contains(values []string, value string) bool {
return false
}
for _, value := range values {
if value == value {
for _, i := range values {
if i == value {
return true
}
}