Skip to content

Commit 4783d08

Browse files
authored
fix(scripts): use dots instead of dashes in binary name version (#1492)
Signed-off-by: Patrik Cyvoct <[email protected]>
1 parent 1795699 commit 4783d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [[ "${BUILD_IN_DOCKER}" == "true" ]]; then
1818

1919

2020
BIN_DIR="./bin"
21-
VERSION=$(go run cmd/scw/main.go -o json version | jq -r .version | tr . -)
21+
VERSION=$(go run cmd/scw/main.go -o json version | jq -r .version)
2222
BIN_LINUX="$BIN_DIR/scw-$VERSION-linux-x86_64"
2323
BIN_LINUX_386="$BIN_DIR/scw-$VERSION-linux-386"
2424
BIN_DARWIN="$BIN_DIR/scw-$VERSION-darwin-x86_64"

0 commit comments

Comments
 (0)