Skip to content

Commit

Permalink
[MINOR][BUILD] Fix script name in release-tag.sh usage message
Browse files Browse the repository at this point in the history
## 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 <dongjoon@apache.org>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
  • Loading branch information
dongjoon-hyun committed Jan 7, 2019
1 parent 61133cb commit 468d25e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/create-release/release-tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ SELF=$(cd $(dirname $0) && pwd)
. "$SELF/release-util.sh"

function exit_with_usage {
local NAME=$(basename $0)
cat << EOF
usage: tag-release.sh
usage: $NAME
Tags a Spark release on a particular branch.
Inputs are specified with the following environment variables:
Expand Down

0 comments on commit 468d25e

Please sign in to comment.