From 2cd7cb3a1f0f1a090a7296b2a89c15fb0be49a8d Mon Sep 17 00:00:00 2001 From: Jeremy Collins Date: Fri, 26 Jun 2026 16:03:10 -0400 Subject: [PATCH] fix: rename aux.go files (AUX is reserved on Windows) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AUX is a reserved device name on Windows regardless of file extension, so `aux.go` cannot exist on a Windows checkout — git clone fails partway through. Rename both aux.go files to auxfiles.go; Go is indifferent to source filenames so package contents are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- cmd/chartplotter/{aux.go => auxfiles.go} | 0 internal/engine/server/{aux.go => auxfiles.go} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename cmd/chartplotter/{aux.go => auxfiles.go} (100%) rename internal/engine/server/{aux.go => auxfiles.go} (100%) diff --git a/cmd/chartplotter/aux.go b/cmd/chartplotter/auxfiles.go similarity index 100% rename from cmd/chartplotter/aux.go rename to cmd/chartplotter/auxfiles.go diff --git a/internal/engine/server/aux.go b/internal/engine/server/auxfiles.go similarity index 100% rename from internal/engine/server/aux.go rename to internal/engine/server/auxfiles.go