Rename projects, docgen->sheep, checkstyle->wolf
[wolf] / bin / buildRelease.sh
index d5c10194bd634bfde436490c6e9e99df125d90d1..1d6161b7972da5293af559fd2d308321cff50173 100755 (executable)
@@ -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"