diff options
author | Tom Stellard <tstellar@redhat.com> | 2019-07-25 01:49:49 +0000 |
---|---|---|
committer | Tom Stellard <tstellar@redhat.com> | 2019-07-25 01:49:49 +0000 |
commit | f181dd99cf1c4e94f1e191b4ffb7357571af9039 (patch) | |
tree | 874197f33882617eb2a3ccd70c5695fe952e3949 /llvm/utils/release/github-upload-release.py | |
parent | 925ccdbfd758efd3ab0c9103214cc1fe7de0e15e (diff) | |
download | bcm5719-llvm-f181dd99cf1c4e94f1e191b4ffb7357571af9039.tar.gz bcm5719-llvm-f181dd99cf1c4e94f1e191b4ffb7357571af9039.zip |
github-upload-release.py: Fix script name in examples
llvm-svn: 366978
Diffstat (limited to 'llvm/utils/release/github-upload-release.py')
-rwxr-xr-x | llvm/utils/release/github-upload-release.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/utils/release/github-upload-release.py b/llvm/utils/release/github-upload-release.py index bbaf2f34279..f0570a9e99c 100755 --- a/llvm/utils/release/github-upload-release.py +++ b/llvm/utils/release/github-upload-release.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# ===-- github-release.py -------------------------------------------------===# +# ===-- github-upload-release.py ------------------------------------------===# # # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. @@ -18,13 +18,13 @@ # https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line # # Create a new release from an existing tag: -# ./github-release.py --token $github_token --release 8.0.1-rc4 create +# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 create # # Upload files for a release -# ./github-release.py --token $github_token --release 8.0.1-rc4 upload --files llvm-8.0.1rc4.src.tar.xz +# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files llvm-8.0.1rc4.src.tar.xz # # You can upload as many files as you want at a time and use wildcards e.g. -# ./github-release.py --token $github_token --release 8.0.1-rc4 upload --files *.src.* +# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files *.src.* #===------------------------------------------------------------------------===# |