From 67b61c8f9414bea13338da85faae4bf282e87457 Mon Sep 17 00:00:00 2001 From: David Hull Date: Sat, 21 Nov 2015 23:01:46 +0000 Subject: [PATCH] ibuild: Write newline to end of tz_index.hrl file. --- src/ibuild.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ibuild.erl b/src/ibuild.erl index 92cf709..2530004 100755 --- a/src/ibuild.erl +++ b/src/ibuild.erl @@ -24,7 +24,7 @@ build_index() -> end, I = lists:foldl(F, dict:new(), ?tz_database), {ok, File} = file:open("tz_index.hrl", [write]), - io:fwrite(File, "-define(tz_index, ~p).", [I]). + io:fwrite(File, "-define(tz_index, ~p).\n", [I]). %% So this can be run from escript: main(_Args) ->