From 4f4daf5943ce7934102bba5bedc4b095662122f2 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Tue, 9 Jul 2024 13:23:16 -0300 Subject: [PATCH] Types tweak --- src/daemon/funko.cr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/daemon/funko.cr b/src/daemon/funko.cr index 1a61f84..3198137 100644 --- a/src/daemon/funko.cr +++ b/src/daemon/funko.cr @@ -133,7 +133,7 @@ module Funko end # Helper to run faaso locally and respond via env - def run_faaso(args : Array(String), env) : Bool + def run_faaso(args : Array(String), env) args << "-l" # Always local in the server Log.info { "Running faaso [#{args}" } Process.run( @@ -148,7 +148,6 @@ module Funko Fiber.yield # Without this the process never ends break if process.terminated? end - true end # FIXME: find a way to raise an exception on failure # of the faaso process