8960c1460da7d1d2e9ff402cef4e34af70078f35
maximilianh
  Fri Oct 17 08:48:06 2025 -0700
removing temp file cleanup from hgMirror, slows down the build, found by Chris

diff --git src/hg/hgMirror/makefile src/hg/hgMirror/makefile
index c12aa5926c3..f3d430e497b 100644
--- src/hg/hgMirror/makefile
+++ src/hg/hgMirror/makefile
@@ -3,33 +3,35 @@
 
 #cannot use common include rules, don't know how to overwrite :: targets
 #include ../../inc/cgi_build_rules.mk
 
 ifeq (${CGI_BIN_USER},)
     CGI_BIN_USER=${CGI_BIN}-${USER}
 endif
 
 ifeq (${CGI_BIN_BETA},)
     CGI_BIN_BETA=${CGI_BIN}-beta
 endif
 
 my::
 	rm -f ${CGI_BIN_USER}/hgMirror
 	cp -p hgMirror ${CGI_BIN_USER}/
-	# can only delete temp files as the apache user
-	curl -s "http://hgwdev-${USER}.soe.ucsc.edu/cgi-bin/hgMirror?reset=1" || true
 beta::
 	rm -f ${CGI_BIN_BETA}/hgMirror
 	cp -p hgMirror ${CGI_BIN_BETA}/
+	# can only delete temp files as the apache user
+	curl -s "http://hgwdev-${USER}.soe.ucsc.edu/cgi-bin/hgMirror?reset=1" || true
 alpha::
 	rm -f ${CGI_BIN}/hgMirror
 	cp -p hgMirror ${CGI_BIN}/
+	# can only delete temp files as the apache user
+	curl -s "http://hgwdev-${USER}.soe.ucsc.edu/cgi-bin/hgMirror?reset=1" || true
 clean::
 
 compile::
 
 lint::
 	pylint -E hgMirror
 
 install::
 	rm -f ${DESTDIR}${CGI_BIN}/hgMirror
 	cp -p hgMirror ${DESTDIR}${CGI_BIN}/