From 68754991c81e96ce80ca07f0e01c3afa78eb2ba8 Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sun, 9 Feb 2025 00:50:58 +1100 Subject: [PATCH] Added reminder to tester to avoid tracking changes --- tester.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tester.go b/tester.go index a0f4ea5..f3d7e2c 100644 --- a/tester.go +++ b/tester.go @@ -10,6 +10,8 @@ import ( // This function will only be called if the --test commandline flag is set. // After the function finishes the application will close. // Running command `make test` will run the test using port 3232 to avoid -// conflicts on the default 3333. Useful for testing things out during dev +// conflicts on the default 3333. Useful for testing things out during dev. +// If you add code here, remember to run: +// `git update-index --assume-unchanged tester.go` to avoid tracking changes func test(config *server.Config, conn *sql.DB, srv *http.Server) { }