#!/bin/bash

rsync -pav *.jar ../java/lib/java/.

if [ -d ../lib/java ] ; then
    # The main jar files have been installed where they need to be already
    # => Copy versions of the extra jar files there as well
    rsync -pav *.jar ../java/lib/java/.
fi
