From 403f068abfb396491663870149efe1f91502477a Mon Sep 17 00:00:00 2001 From: Chris Novakovic Date: Tue, 28 Oct 2025 13:40:43 +0000 Subject: [PATCH] Remove remaining references to the previous "jarcat" name The only user-visible change here is the renaming of the temporary directory that arcat creates as a working directory for writing zip files. --- main.go | 4 ++-- unzip/unzip.go | 2 +- zip/writer.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index aba1d26..28f9a29 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -// Package main implements jarcat, a program to efficiently concatenate .zip files. +// Package main implements arcat, a program to efficiently concatenate .zip files. // Originally this was pretty simple and that was all it could do, over time it's // gained a bunch more features on a more or less as needed basis. // @@ -172,7 +172,7 @@ func main() { opts.Zip.ExcludeInternalPrefix = javaExcludePrefixes } - tempFile, err := ioutil.TempFile(".", "jarcat-") + tempFile, err := ioutil.TempFile(".", "arcat-") must(err) filename := tempFile.Name() diff --git a/unzip/unzip.go b/unzip/unzip.go index 5ac9e6d..a13d22a 100644 --- a/unzip/unzip.go +++ b/unzip/unzip.go @@ -1,4 +1,4 @@ -// Package unzip implements unzipping for jarcat. +// Package unzip implements unzipping for arcat. // We implement this to avoid needing a runtime dependency on unzip, // which is not a profound package but not installed everywhere by default. package unzip diff --git a/zip/writer.go b/zip/writer.go index 5d88d72..ce98d92 100644 --- a/zip/writer.go +++ b/zip/writer.go @@ -1,4 +1,4 @@ -// Package zip implements functions for jarcat that manipulate .zip files. +// Package zip implements functions for arcat that manipulate .zip files. package zip import (