Add documentation, scripts for releasing 0.1
[honey] / bin / buildRelease.sh
1 #!/bin/bash
2
3 version=$(sbcl --noinform --disable-ldb --lose-on-corruption --end-runtime-options --eval '(format t "~A" (asdf:component-version (asdf:find-system :honey)))' --eval "(quit)")
4
5 echo -n "Building version $version, hit enter to continue"
6 read
7
8 mkdir honey_$version
9 cp -ap src/main/* honey_$version/
10 tar zcf honey_${version}.tar.gz honey_$version/
11 rm -rf honey_$version
12
13 echo "All done, it's in honey_${version}.tar.gz, you should tag it, push it up to consxy, and update the consxy releases"