Skip to content

Commit 7ed9f71

Browse files
authored
fix(lockfile): ensure newline at EOF for lockfile (#1639)
## Description The lockfile currently does not end with a newline at EOF. Text files should [end with a newline](https://unix.stackexchange.com/a/18789). This also lets you manually edit the lockfile in vim without 'fixeol' creating a spurious change for the added newline. This change however will create a change in users' lockfiles adding a newline upon updating, but since the lockfile would be changing anyways to update lazy.nvim itself, this is likely acceptable. ## Related Issue(s) *none* ## Screenshots *N/A*
1 parent 54f70c7 commit 7ed9f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/manage/lock.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function M.update()
4242
f:write(",\n")
4343
end
4444
end
45-
f:write("\n}")
45+
f:write("\n}\n")
4646
f:close()
4747
end
4848

0 commit comments

Comments
 (0)