File tree Expand file tree Collapse file tree 5 files changed +41
-27
lines changed Expand file tree Collapse file tree 5 files changed +41
-27
lines changed Original file line number Diff line number Diff line change 3
3
* .sh
4
4
sponge
5
5
vendor /
6
+ dist /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # This is an example .goreleaser.yml file with some sensible defaults.
2
+ # Make sure to check the documentation at https://goreleaser.com
3
+ before :
4
+ hooks :
5
+ # You may remove this if you don't use go modules.
6
+ - go mod tidy
7
+ # you may remove this if you don't need go generate
8
+ - go generate ./...
9
+ builds :
10
+ - env :
11
+ - CGO_ENABLED=0
12
+ goos :
13
+ - linux
14
+ - windows
15
+ - darwin
16
+ archives :
17
+ - replacements :
18
+ darwin : Darwin
19
+ linux : Linux
20
+ windows : Windows
21
+ 386 : i386
22
+ amd64 : x86_64
23
+ checksum :
24
+ name_template : ' checksums.txt'
25
+ snapshot :
26
+ name_template : " {{ incpatch .Version }}-next"
27
+ changelog :
28
+ sort : asc
29
+ filters :
30
+ exclude :
31
+ - ' ^docs:'
32
+ - ' ^test:'
Original file line number Diff line number Diff line change 1
1
# sponge
2
- [ ![ GoDoc] ( https://godoc.org/gitlab.com/tslocum/sponge?status.svg )] ( https://godoc.org/gitlab.com/tslocum/sponge )
3
- [ ![ CI status] ( https://gitlab.com/tslocum/sponge/badges/master/pipeline.svg )] ( https://gitlab.com/tslocum/sponge/commits/master )
4
- [ ![ Donate] ( https://img.shields.io/liberapay/receives/rocketnine.space.svg?logo=liberapay )] ( https://liberapay.com/rocketnine.space )
2
+ This repository was forked from [ this repository] ( https://code.rocketnine.space/tslocum/sponge )
5
3
6
4
Soaks up all input from stdin and writes it to a file or stdout. Pipelines
7
5
reading from and writing to the same file may be safely constructed.
@@ -12,14 +10,18 @@ reading from and writing to the same file may be safely constructed.
12
10
13
11
``` go get gitlab.com/tslocum/sponge ```
14
12
13
+ Or download the binary in the [ release page] ( https://github.com/flinkstech/sponge/releases )
14
+
15
15
## Usage
16
16
17
17
``` sponge [-a] [file]: soak up all input from stdin and write it to [file] or stdout ```
18
18
19
19
## Support
20
20
21
- Please share issues and suggestions [ here] ( https://gitlab .com/tslocum /sponge/issues ) .
21
+ Please share issues and suggestions [ here] ( https://github .com/flinkstech /sponge/issues ) .
22
22
23
23
## Credits
24
24
25
- sponge was originally written in C by Tollef Fog Heen.
25
+ sponge was originally written in C by Tollef Fog Heen.
26
+
27
+ This Go port was initially written by [ Trevor Slocum] ( https://code.rocketnine.space/tslocum/ )
Original file line number Diff line number Diff line change 1
1
module gitlab.com/tslocum/sponge
2
2
3
- go 1.12
3
+ go 1.18
You can’t perform that action at this time.
0 commit comments