summaryrefslogtreecommitdiff
path: root/doUpgrade.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 05:32:48 -0500
committerJeff Carr <[email protected]>2025-10-17 05:32:48 -0500
commit26cf2f20259a89fbba686d259b82d554ac24ec84 (patch)
tree70c67706c160f6bfc0a26b489f2fff06f9b1c057 /doUpgrade.go
parent8bc1bb9b307062735105edf2fdcd691404cf84c8 (diff)
try out argv as the name. is this weird?v0.1.45
Diffstat (limited to 'doUpgrade.go')
-rw-r--r--doUpgrade.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doUpgrade.go b/doUpgrade.go
index 45ea369..81027ff 100644
--- a/doUpgrade.go
+++ b/doUpgrade.go
@@ -70,10 +70,10 @@ func doUpgrade() error {
continue
}
if _, err := debian.AptInstall(p.Package); err != nil {
- me.sh.BadExit("damn it", err)
+ me.argv.BadExit("damn it", err)
}
}
}
- me.sh.GoodExit("installed")
+ me.argv.GoodExit("installed")
return nil
}