From 3202549a2aef09cc79d355cd7630e4775db51f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Fri, 28 Jun 2019 20:34:36 +0300 Subject: [PATCH] Don't include editor swap file in the .love file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d42102..e37287f 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ BIN=eitmer.love all: $(BIN) $(BIN): bundle/main.lua bundle/conf.lua - cd bundle; zip -9 -r ../$@ . + cd bundle; zip -9 -r ../$@ * clean: rm -f $(BIN)