Skip to content

Commit 416a5a2

Browse files
committed
remove extra newline from version
1 parent a988e3c commit 416a5a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

get_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ set -e
44

55
mkdir -p tmp
66

7-
go version | { read _ _ v _; echo ${v#go}; } > tmp/go_version.txt
7+
go version | { read _ _ v _; echo -n ${v#go}; } > tmp/go_version.txt
88
git describe --tags --dirty | tr -d '\n' > tmp/version.txt
99
git rev-parse --short HEAD | tr -d '\n' > tmp/commit_hash.txt

0 commit comments

Comments
 (0)