aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/apply_vimgrep_updates.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/apply_vimgrep_updates.fnl b/scripts/apply_vimgrep_updates.fnl
index 4542930..5fada6c 100755
--- a/scripts/apply_vimgrep_updates.fnl
+++ b/scripts/apply_vimgrep_updates.fnl
@@ -28,7 +28,7 @@
(when (and (> (length lines) linenr) (not= (. lines linenr) text))
(set (. lines linenr) text)
(local file (io.open filepath :w))
- (file:write (table.concat lines "\n"))
+ (file:write (.. (table.concat lines "\n") "\n"))
(file:close)
(set written? true))
written?)