From 2df6bd80a737b9782f1f64d419a8276bd263cd34 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Mon, 17 Jan 2022 20:50:33 -0500 Subject: [PATCH] saturn: Provide usable lua shebang The end-result can be executed directly on my NixOS system. --- saturn/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saturn/Makefile b/saturn/Makefile index 852d14e..a2df6cc 100644 --- a/saturn/Makefile +++ b/saturn/Makefile @@ -7,7 +7,7 @@ MODULES=main.fnl lua $(FENNEL) --compile $< > $@ saturn: $(patsubst %.fnl,%.lua,$(MODULES)) Makefile - (echo -e "#!/usr/bin/lua\n" ; cat main.lua ) > $@ + (echo -e "#!/usr/bin/env lua\n" ; cat main.lua ) > $@ chmod +x $@ install: