summaryrefslogtreecommitdiff
path: root/apt.go
diff options
context:
space:
mode:
Diffstat (limited to 'apt.go')
-rw-r--r--apt.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt.go b/apt.go
index 357a3a1..8cdfc41 100644
--- a/apt.go
+++ b/apt.go
@@ -73,10 +73,10 @@ func initPackages(me *zoopb.Machine) {
// Print the installed packages and their versions
for pkg, version := range newP {
new1 := new(zoopb.Package)
- new1.Name = pkg
+ new1.Package = pkg
new1.Version = version
me.Packages.Append(new1)
- // log.Info("added", new1.Name, "failed")
+ // log.Info("added", new1.Package, "failed")
}
getMemory(me)