Skip to content

Commit 1435e8a

Browse files
committed
github-upload-release.py: Fix script name in examples
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366978 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 296db90 commit 1435e8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/release/github-upload-release.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# ===-- github-release.py -------------------------------------------------===#
2+
# ===-- github-upload-release.py ------------------------------------------===#
33
#
44
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
55
# See https://llvm.org/LICENSE.txt for license information.
@@ -18,13 +18,13 @@
1818
# https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line
1919
#
2020
# Create a new release from an existing tag:
21-
# ./github-release.py --token $github_token --release 8.0.1-rc4 create
21+
# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 create
2222
#
2323
# Upload files for a release
24-
# ./github-release.py --token $github_token --release 8.0.1-rc4 upload --files llvm-8.0.1rc4.src.tar.xz
24+
# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files llvm-8.0.1rc4.src.tar.xz
2525
#
2626
# You can upload as many files as you want at a time and use wildcards e.g.
27-
# ./github-release.py --token $github_token --release 8.0.1-rc4 upload --files *.src.*
27+
# ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files *.src.*
2828
#===------------------------------------------------------------------------===#
2929

3030

0 commit comments

Comments
 (0)