Skip to content

Commit

Permalink
fix: runner: ignore unknown file types and sockets (fixes canonical#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
thp-canonical committed Feb 21, 2024
1 parent ded9133 commit 88a1f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spread/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 88a1f26

Please sign in to comment.