From a77db31cb9097e36e400c1375cca692b51671666 Mon Sep 17 00:00:00 2001 From: Grigory Morozov Date: Thu, 26 Mar 2026 09:00:18 +0700 Subject: [PATCH] Add missing has_certificate.lua copy operation to Makefile The current version will fail if you try to call has_certificate() because lib/resty/auto-ssl/utils/has_certificate.lua is not being copied in Makefile. This commit fixes this. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0636d73..86ea485 100644 --- a/Makefile +++ b/Makefile @@ -52,6 +52,7 @@ install: check-dependencies install -m 644 lib/resty/auto-ssl/utils/shell_execute.lua $(INST_LUADIR)/resty/auto-ssl/utils/shell_execute.lua install -m 644 lib/resty/auto-ssl/utils/shuffle_table.lua $(INST_LUADIR)/resty/auto-ssl/utils/shuffle_table.lua install -m 644 lib/resty/auto-ssl/utils/start_sockproc.lua $(INST_LUADIR)/resty/auto-ssl/utils/start_sockproc.lua + install -m 644 lib/resty/auto-ssl/utils/has_certificate.lua $(INST_LUADIR)/resty/auto-ssl/utils/has_certificate.lua install -d $(INST_LUADIR)/resty/auto-ssl/vendor install -m 644 lib/resty/auto-ssl/vendor/shell.lua $(INST_LUADIR)/resty/auto-ssl/vendor/shell.lua install -d $(INST_BINDIR)/resty-auto-ssl