Copy the SparkR source package with LFTP

This PR adds a line in release-build.sh to copy the SparkR source archive using LFTP

Author: Shivaram Venkataraman <shivaram@cs.berkeley.edu>

Closes #16226 from shivaram/fix-sparkr-copy-build.
This commit is contained in:
Shivaram Venkataraman 2016-12-08 22:21:24 -08:00
parent 9338aa4f89
commit 934035ae7c

View file

@ -258,6 +258,7 @@ if [[ "$1" == "package" ]]; then
LFTP mkdir -p $dest_dir
LFTP mput -O $dest_dir 'spark-*'
LFTP mput -O $dest_dir 'pyspark-*'
LFTP mput -O $dest_dir 'SparkR-*'
exit 0
fi