Skip to content

Commit

Permalink
fix installation of fhomed (was broken because of manpage)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed May 2, 2024
1 parent c64acea commit bffa7bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ brews:
description: Background daemon for F&Home
license: MIT
install: |
system("./fhomed docs --format man-with-section", :out => "fhomed.1")
man_content = `./fhomed docs --format man-with-section`
File.write("fhomed.1", man_content)
bin.install "fhomed"
man1.install "fhomed.1"
Expand Down

0 comments on commit bffa7bf

Please sign in to comment.