Add documentation, scripts for releasing 0.1
[honey] / bin / buildRelease.sh
diff --git a/bin/buildRelease.sh b/bin/buildRelease.sh
new file mode 100755 (executable)
index 0000000..897d733
--- /dev/null
@@ -0,0 +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 :honey)))' --eval "(quit)")
+
+echo -n "Building version $version, hit enter to continue"
+read
+
+mkdir honey_$version
+cp -ap src/main/* honey_$version/
+tar zcf honey_${version}.tar.gz honey_$version/
+rm -rf honey_$version
+
+echo "All done, it's in honey_${version}.tar.gz, you should tag it, push it up to consxy, and update the consxy releases"