From de61816623b80bfdc45b51bbce75f4d388da7218 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 19 Oct 2021 18:27:29 +0200 Subject: [PATCH] Rename .air.conf to .air.toml (#17360) As of https://github.com/cosmtrek/air/pull/90, the preferred file extension is .toml. The file format was always toml itself. --- .air.conf => .air.toml | 0 Makefile | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .air.conf => .air.toml (100%) diff --git a/.air.conf b/.air.toml similarity index 100% rename from .air.conf rename to .air.toml diff --git a/Makefile b/Makefile index 929f74ff9c..aa47cea534 100644 --- a/Makefile +++ b/Makefile @@ -352,7 +352,7 @@ watch-backend: go-check @hash air > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ $(GO) install github.com/cosmtrek/air@bedc18201271882c2be66d216d0e1a275b526ec4; \ fi - air -c .air.conf + air -c .air.toml .PHONY: test test: test-frontend test-backend