Skip to content

Commit

Permalink
remove newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
gmgigi96 committed Feb 10, 2022
1 parent 5cc96de commit bd31270
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions get_build_info.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
git rev-parse --short HEAD > .git_commit
date +%FT%T%z > .build_date
git describe --always > .version
go version | awk '{print $3}' > .go_version
git rev-parse --short HEAD | tr -d "\n" > .git_commit
date +%FT%T%z | tr -d "\n" > .build_date
git describe --always | tr -d "\n" > .version
go version | awk '{print $3}' | tr -d "\n" > .go_version

0 comments on commit bd31270

Please sign in to comment.