This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 1359ab010720ea50bc5b5ce3e3666513654528cf Author: Raúl Cumplido <[email protected]> AuthorDate: Tue Jun 13 14:55:12 2023 +0200 Raul testing --- dev/release/post-11-bump-versions.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/release/post-11-bump-versions.sh b/dev/release/post-11-bump-versions.sh index 4d263cbfd5..11959ea56e 100755 --- a/dev/release/post-11-bump-versions.sh +++ b/dev/release/post-11-bump-versions.sh @@ -69,10 +69,12 @@ if [ ${BUMP_DEB_PACKAGE_NAMES} -gt 0 ]; then local version=$1 local major_version=$(echo $version | sed -E -e 's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/') local minor_version=$(echo $version | sed -E -e 's/^[0-9]+\.([0-9]+)\.[0-9]+$/\1/') + echo "HERE ${version} and ${major_version} and ${minor_version}" expr ${major_version} \* 100 + ${minor_version} } deb_lib_suffix=$(so_version $version) next_deb_lib_suffix=$(so_version $next_version) + echo "HERE ${deb_lib_suffix} and ${next_deb_lib_suffix}" if [ "${deb_lib_suffix}" != "${next_deb_lib_suffix}" ]; then cd $SOURCE_DIR/../tasks/linux-packages/apache-arrow for target in debian*/lib*${deb_lib_suffix}.install; do
