From 01309a6c3309294cd273f02222d8ec790adf12a2 Mon Sep 17 00:00:00 2001 From: Deathn0t Date: Tue, 18 Apr 2023 08:42:28 +0200 Subject: [PATCH] adding new line to end of redis.conf in redisjson installation --- packages/redisjson/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/redisjson/package.py b/packages/redisjson/package.py index 74b9a36..dd8a21a 100644 --- a/packages/redisjson/package.py +++ b/packages/redisjson/package.py @@ -46,4 +46,4 @@ def install(self, spec, prefix): ext = "dylib" if self.spec.satisfies("platform=darwin") else "so" target = join_path(prefix.lib, f"librejson.{ext}") with open(join_path(prefix, "redis.conf"), "w") as f: - f.write(f"loadmodule {target}") + f.write(f"loadmodule {target}\n")