Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(apps/prod/tekton/configs/tasks): fix
clone-ext
for hotfix cases
before: ``` ~/tidb # MAJOR_MINOR_PATCH=$(echo "$RELEASE_VERSION" | awk -F. '{print $1 "." $2 "." $3}') ~/tidb # echo $MAJOR_MINOR_PATCH v7.5.2-20240705-eaff0fb ``` after: ``` ~/tidb # MAJOR_MINOR_PATCH=$(echo "$RELEASE_VERSION" |grep -oE "^v[0-9]+[.][0-9]+[.][0-9]+") ~/tidb # echo $MAJOR_MINOR_PATCH v7.5.2 ``` Signed-off-by: wuhuizuo <[email protected]>
- Loading branch information