diff options
author | Valery Piashchynski <[email protected]> | 2020-02-17 15:05:49 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-02-17 15:05:49 +0300 |
commit | 25ef7646e2149b6e35945eb4ce50c19db2ef8e27 (patch) | |
tree | 0ba04fcfbfc669d8b4f31b1489c00399ae76fdff /build.sh | |
parent | eb296f27868d4ac886b1b151377f15b35e3f0099 (diff) |
Update CHANGELOG and build.sh to version 1.6.2
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.6.1 +RR_VERSION=1.6.2 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" @@ -29,12 +29,12 @@ build(){ cd builds if [ "$2" == "linux" ]; then - tar -zcf $bdir.tar.gz $bdir + tar -zcf "$bdir".tar.gz "$bdir" else - zip -r -q $bdir.zip $bdir + zip -r -q "$bdir".zip "$bdir" fi - rm -rf $bdir + rm -rf "$bdir" cd .. } |