X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?p=wolf;a=blobdiff_plain;f=bin%2FbuildRelease.sh;h=1d6161b7972da5293af559fd2d308321cff50173;hp=d5c10194bd634bfde436490c6e9e99df125d90d1;hb=981fd3d9a7ad7e2b2dc4e92c5b594e6b2684a888;hpb=5a49e356591a22a60b66a8064bf8ff7371a55075 diff --git a/bin/buildRelease.sh b/bin/buildRelease.sh index d5c1019..1d6161b 100755 --- a/bin/buildRelease.sh +++ b/bin/buildRelease.sh @@ -1,13 +1,13 @@ #!/bin/bash -version=$(sbcl --noinform --disable-ldb --lose-on-corruption --end-runtime-options --eval '(format t "~A" (asdf:component-version (asdf:find-system :style-checker)))' --eval "(quit)") +version=$(sbcl --noinform --disable-ldb --lose-on-corruption --end-runtime-options --eval '(format t "~A" (asdf:component-version (asdf:find-system :wolf)))' --eval "(quit)") echo -n "Building version $version, hit enter to continue" read -mkdir style-checker_$version -cp -ap src/main/* style-checker_$version/ -tar zcf style-checker_${version}.tar.gz style-checker_$version/ -rm -rf style-checker_$version +mkdir wolf_$version +cp -ap src/main/* wolf_$version/ +tar zcf wolf_${version}.tar.gz wolf_$version/ +rm -rf wolf_$version -echo "All done, it's in style-checker_${version}.tar.gz, you should tag it and push it up to github" +echo "All done, it's in wolf_${version}.tar.gz, you should tag it and push it up to github"