chiark / gitweb /
Improve publication instructions
[jarrg-ian.git] / build-sh
index 9bef7b3c7d78cd7b9459bc9023f999f6195ef864..9c57874100e11f669d03c3ba249645f0b4662daf 100755 (executable)
--- a/build-sh
+++ b/build-sh
@@ -10,7 +10,7 @@ case "$#.$1" in
 *)     echo >&2 'no arguments allowed'; exit 1;;
 esac
 
-: ${JAVA_HOME:=/usr/lib/jvm/java-6-sun}
+: ${JAVA_HOME:=/usr/lib/jvm/java-8-openjdk-amd64}
 export JAVA_HOME
 
 revision=`git describe --always || echo '(unknown revision)'`
@@ -39,6 +39,7 @@ Building tarballs
 
 tarball () {
        output=$1; shift
+       >"$output"; # avoids rsync seeing that . changed
        GZIP='-9v --rsyncable' tar --exclude=\*{~,.tar.gz,.exe} --exclude='#*#' \
          --transform='s/^./jarrg/' --exclude={src/build,tmp} "$@" \
          -zcf "$output" .
@@ -62,6 +63,11 @@ pubdir="${JARRG_PUBLISH_DIR-/home/yarrgweb/public-html/download/jarrg}"
 echo "
 Revision: $revision
 
-Install with:
- RSYNC_RSH=ssh rsync -vP $files $pubbase:$pubdir/test/
+Publish as test with:
+  RSYNC_RSH=ssh rsync -vP $files $pubbase:$pubdir/test/
+
+To actually publish a release, on $pubbase:
+  mkdir $revision
+  ln tests/* $revision/.
+  ln -f tests/* .
 "