This is an automated email from the ASF dual-hosted git repository. dragonyliu pushed a commit to branch branch-2 in repository https://gitbox.apache.org/repos/asf/ratis.git
commit 16e83a2367ef6c197ea66d4f7ddba3f798ac5206 Author: Yaolong Liu <[email protected]> AuthorDate: Tue Aug 23 00:40:51 2022 +0800 RATIS-1682. Fix ratis make_rc.sh prepare-bin phase (#721) (cherry picked from commit 07d6065cd8aa65a0fb09036da871aaef6175603e) --- dev-support/make_rc.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh index a11dd9da2..e02145555 100755 --- a/dev-support/make_rc.sh +++ b/dev-support/make_rc.sh @@ -117,6 +117,7 @@ prepare-bin() { mkdir -p "$WORKINGDIR" cd "$WORKINGDIR" tar zvxf "$projectdir/ratis-assembly/target/apache-ratis-${RATISVERSION}-src.tar.gz" + mv "apache-ratis-${RATISVERSION}-src" "apache-ratis-${RATISVERSION}" cd "apache-ratis-${RATISVERSION}" mvnFun clean install assembly:single -DskipTests=true -Prelease -Papache-release -Dgpg.keyname="${CODESIGNINGKEY}"
