Skip to content

Commit

Permalink
Quick Save
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdoiel committed Jun 20, 2023
1 parent 9c72e5f commit 21ad498
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ dist/Windows-arm64: $(PROGRAMS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Windows-arm64.zip LICENSE codemeta.json CITATION.cff *.md bin/* man/*
@rm -fR dist/bin

dist/RaspberryPiOS-arm7: $(PROGRAMS)
dist/Linux-armv7l: $(PROGRAMS)
@mkdir -p dist/bin
@for FNAME in $(PROGRAMS); do env GOOS=linux GOARCH=arm GOARM=7 go build -o "dist/bin/$${FNAME}" cmd/$${FNAME}/*.go; done
@cd dist && zip -r $(PROJECT)-v$(VERSION)-RaspberryPiOS-arm7.zip LICENSE codemeta.json CITATION.cff *.md bin/* man/*
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Linux-armv7l.zip LICENSE codemeta.json CITATION.cff *.md bin/* man/*
@rm -fR dist/bin

distribute_docs:
Expand Down
18 changes: 9 additions & 9 deletions man/man1/fadein2osf.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ OPTIONS
.IP
.nf
\f[C]
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
\f[R]
.fi
.PP
Expand Down
18 changes: 9 additions & 9 deletions man/man1/osf2txt.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ OPTIONS
.IP
.nf
\f[C]
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
\f[R]
.fi
.PP
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
ReleaseDate = "2023-06-20"

// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "61e9b35"
ReleaseHash = "9c72e5f"

LicenseText = `
All rights reserved.
Expand Down

0 comments on commit 21ad498

Please sign in to comment.