From aa491b5376c8b2da5717dcb994396de3b807950a Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Sat, 4 Jan 2025 02:40:08 -0500 Subject: [PATCH] fix: Add another write to ensure flushing Signed-off-by: Austin Ziegler --- elixir/support/app_identity/suite/generator.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/elixir/support/app_identity/suite/generator.ex b/elixir/support/app_identity/suite/generator.ex index b518730..a423e05 100644 --- a/elixir/support/app_identity/suite/generator.ex +++ b/elixir/support/app_identity/suite/generator.ex @@ -80,6 +80,7 @@ defmodule AppIdentity.Suite.Generator do if options[:stdout] do IO.write(:stdio, Jason.encode!(suite, pretty: true)) + IO.write(:stdio, "") else File.write!(name, Jason.encode!(suite))