Skip to content

Commit 9052a5e

Browse files
committed
[MINOR][BUILD] Fix script name in release-tag.sh usage message
## What changes were proposed in this pull request? This PR fixes the old script name in `release-tag.sh`. $ ./release-tag.sh --help | head -n1 usage: tag-release.sh ## How was this patch tested? Manual. $ ./release-tag.sh --help | head -n1 usage: release-tag.sh Closes #23477 from dongjoon-hyun/SPARK-RELEASE-TAG. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit 468d25e) Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 38fe12b commit 9052a5e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/create-release/release-tag.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
#
1919

2020
function exit_with_usage {
21+
local NAME=$(basename $0)
2122
cat << EOF
22-
usage: tag-release.sh
23+
usage: $NAME
2324
Tags a Spark release on a particular branch.
2425
2526
Inputs are specified with the following environment variables:

0 commit comments

Comments
 (0)