commit | 067eac6c89418411d07e62b029cca1e2b16d2540 | [log] [tgz] |
---|---|---|
author | Matt Farina <matt@mattfarina.com> | Fri Aug 19 09:25:23 2016 -0400 |
committer | Matt Farina <matt@mattfarina.com> | Fri Aug 19 09:25:23 2016 -0400 |
tree | de5b5d72e9b11d38910e6f210d0aedf1d1ff56cc | |
parent | 287cd6f14f7631510f9285e7d6017179eff8d18f [diff] |
Fixed array (under slide) length issue
diff --git a/cfg/lock.go b/cfg/lock.go index ffba610..c03ac41 100644 --- a/cfg/lock.go +++ b/cfg/lock.go
@@ -196,7 +196,7 @@ Hash: hash, Updated: time.Now(), Imports: make([]*Lock, len(ds)), - DevImports: make([]*Lock, len(tds)), + DevImports: make([]*Lock, 0), } for i := 0; i < len(ds); i++ {