From e7f263dab82c1665e0422a8081bb52035904a23c Mon Sep 17 00:00:00 2001 From: Ilya Grishnov Date: Tue, 14 Mar 2023 08:58:07 +0300 Subject: [PATCH] bug: fixed missing entry about version file Added a missing version file entry to the `build.modules` list in the rockspec file. Now, when installing the module via rockspec, the http/version.lua file is copied to the installation location. Closes #185 --- http-scm-1.rockspec | 1 + 1 file changed, 1 insertion(+) diff --git a/http-scm-1.rockspec b/http-scm-1.rockspec index 6efd603..efd5408 100644 --- a/http-scm-1.rockspec +++ b/http-scm-1.rockspec @@ -28,6 +28,7 @@ build = { } }, ['http.server'] = 'http/server.lua', + ['http.version'] = 'http/version.lua', ['http.mime_types'] = 'http/mime_types.lua', ['http.codes'] = 'http/codes.lua', }