diff options
| author | Stefan Majewsky <stefan.majewsky@sap.com> | 2022-10-28 16:06:40 +0200 |
|---|---|---|
| committer | Stefan Majewsky <stefan.majewsky@sap.com> | 2022-10-28 16:06:40 +0200 |
| commit | 90dd519a948d06738479c04d331f28dfab99315c (patch) | |
| tree | d4a9914cb73be3dbe9438b012a08408d79bdb7c9 /util | |
| parent | fd6e57b6239655722884a49a86be0f051cc32bde (diff) | |
| parent | 5cf9b60d2ded95d29827389a1a5901f1068d4337 (diff) | |
| download | go-schwift-90dd519a948d06738479c04d331f28dfab99315c.tar.gz | |
Merge remote-tracking branch 'SuperSandro2000:sha2'
Diffstat (limited to 'util')
| -rwxr-xr-x | util/render_template.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/render_template.go b/util/render_template.go index 2898623..03a4628 100755 --- a/util/render_template.go +++ b/util/render_template.go @@ -23,14 +23,14 @@ package main import ( "encoding/json" "fmt" - "io/ioutil" + "io" "os" "strings" "text/template" ) func main() { - input, err := ioutil.ReadAll(os.Stdin) + input, err := io.ReadAll(os.Stdin) failIfError(err) sections := strings.SplitN(string(input), "\n---\n", 2) |
