From 88a1f2623303fe33461ff91b401244dba6de7883 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Wed, 21 Feb 2024 15:00:10 +0100 Subject: [PATCH] fix: runner: ignore unknown file types and sockets (fixes #176) --- spread/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spread/runner.go b/spread/runner.go index c84ff63d..ebf4b009 100644 --- a/spread/runner.go +++ b/spread/runner.go @@ -277,7 +277,7 @@ func (r *Runner) prepareContent() (err error) { return fmt.Errorf("cannot remove temporary content file: %v", err) } - args := []string{"c", "--exclude=.spread-reuse.*"} + args := []string{"c", "--exclude=.spread-reuse.*", "--warning=no-file-ignored"} if r.project.Repack == "" { args[0] = "cz" }