summaryrefslogtreecommitdiff
path: root/doIncoming.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-14 01:51:44 -0500
committerJeff Carr <[email protected]>2025-10-14 01:52:56 -0500
commitd10cf84916f9171ae4eb579cd3871e4ec198f2a0 (patch)
tree0f43c90d95688e3bcb6dff9a6c08513df39a37b1 /doIncoming.go
parentf8d3817ebee3913bb8aecff6ea5de8fde6a560ec (diff)
move this to lib/debian
Diffstat (limited to 'doIncoming.go')
-rw-r--r--doIncoming.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doIncoming.go b/doIncoming.go
index 531f99d..ed5b4a0 100644
--- a/doIncoming.go
+++ b/doIncoming.go
@@ -47,7 +47,7 @@ func doIncoming(pb *zoopb.Packages) (string, error) {
oldmd5 := md5.Sum(olddata)
newmd5 := md5.Sum(newdata)
if oldmd5 == newmd5 {
- log.Info("files are the same", md5.Sum(olddata), md5.Sum(newdata))
+ log.Printf("files are the same %x %x\n", md5.Sum(olddata), md5.Sum(newdata))
} else {
shell.RunVerbose([]string{"dpkg", "-I", path})
shell.RunVerbose([]string{"dpkg", "-I", newfilename})