From f5c8c39d0cfccf45390727de9e28a5d05b4cbdf4 Mon Sep 17 00:00:00 2001 From: Kevin Peterson Date: Wed, 18 Mar 2020 11:29:32 -0500 Subject: [PATCH] Modified post-prepare.sh to copy the RELEASE.local file after modifying it. --- .ci-local/travis/post-prepare.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci-local/travis/post-prepare.sh b/.ci-local/travis/post-prepare.sh index 25db204f..79b3d0c5 100755 --- a/.ci-local/travis/post-prepare.sh +++ b/.ci-local/travis/post-prepare.sh @@ -12,8 +12,10 @@ pwd # source functions . ./.ci/travis/utils.sh -# Add SUPPORT to RELEASE.local +# Add SUPPORT to RELEASE.local in the cache directory update_release_local SUPPORT ${CACHEDIR} +# Copy the RELEASE.local from the cache directory to motor's configure directory +[ -e ./configure ] && cp -f ${CACHEDIR}/RELEASE.local ./configure/RELEASE.local echo -e "${ANSI_BLUE}Updated contents of RELEASE.local${ANSI_RESET}" cat ${CACHEDIR}/RELEASE.local