Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MINOR] Only rename SparkR tar.gz if names mismatch
## What changes were proposed in this pull request? For release builds the R_PACKAGE_VERSION and VERSION are the same (e.g., 2.1.0). Thus `cp` throws an error which causes the build to fail. ## How was this patch tested? Manually by executing the following script ``` set -o pipefail set -e set -x touch a R_PACKAGE_VERSION=2.1.0 VERSION=2.1.0 if [ "$R_PACKAGE_VERSION" != "$VERSION" ]; then cp a a fi ``` Author: Shivaram Venkataraman <shivaram@cs.berkeley.edu> Closes apache#16299 from shivaram/sparkr-cp-fix.
- Loading branch information