From 9fd8b3e15dbc18f914958e168b1003de69768a38 Mon Sep 17 00:00:00 2001 From: Guilian Date: Mon, 20 Jan 2025 17:16:02 +0100 Subject: [PATCH] chore: compile to `htmlq` --- .gitignore | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 986b8d3..2a20147 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ *.luastatic.c # Compiled executable from main.lua main +# Same but with correct name +htmlq diff --git a/README.md b/README.md index 2d7f6c5..979262a 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ luarocks install luastatic Once `luastatic` is installed, you can compile Htmlq by running the following command in your terminal, from the project's root directory: ``` -luastatic main.lua css.lua html.lua logging.lua /usr/lib/liblua5.4.so +luastatic main.lua css.lua html.lua logging.lua /usr/lib/liblua5.4.so -o htmlq ``` Note that all `.lua` files from the project need to be specified, with `main.lua` as the first one. Also, the path to `liblua` may vary according to your system. The example provided is for an installation on EndeavourOS.