diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ func main() { okExit("") } - if argv.Update { + if argv.Upgrade { if argv.DryRun { log.Info("--dry-run", []string{"apt", "update"}) } else { @@ -61,7 +61,7 @@ func main() { if argv.DryRun { log.Info("--dry-run", []string{"apt", "install", p.Name}) } else { - shell.Run([]string{"apt", "install", p.Name}) + shell.RunRealtime([]string{"apt", "install", p.Name}) } } } |
