Add copy build script task

This commit is contained in:
Manfred Karrer 2018-05-11 16:23:48 +02:00
parent 6f37812e90
commit 70b1dd7f34
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -28,6 +28,12 @@ cp $EXE_JAR "$linux64/Bisq-$version.jar"
cp $EXE_JAR "$win32/Bisq.jar"
cp $EXE_JAR "$win64/Bisq.jar"
# Copy packager scripts to VM. No need to checkout the source as we only are interested in the build scripts.
cp -r package/linux "$linux32/linux"
cp -r package/linux "$linux64/linux"
cp -r package/windows "$win32/windows"
cp -r package/windows "$win64/windows"
if [ -z "$JAVA_HOME" ]; then
JAVA_HOME=$(/usr/libexec/java_home)
fi