From 60248b5931eb77660c1ef75307ec44099ae14429 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 23 Mar 2025 19:04:31 -0500 Subject: [PATCH] was wronging running 'apt upgrade' --- send.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send.go b/send.go index 01125c0..727cbc9 100644 --- a/send.go +++ b/send.go @@ -79,7 +79,7 @@ func sendMachine(s string) error { log.Info("Got to apt install", line) parts := strings.Fields(line) if len(parts) > 1 { - cmd := []string{"apt", "update"} + cmd := []string{"apt"} cmd = append(cmd, parts[1:]...) log.Info("Got to parts =", parts) log.Info("Got to cmd =", cmd)