]> granicus.if.org Git - llvm/commitdiff
github-upload-release.py: Fix script name in examples
authorTom Stellard <tstellar@redhat.com>
Thu, 25 Jul 2019 01:49:49 +0000 (01:49 +0000)
committerTom Stellard <tstellar@redhat.com>
Thu, 25 Jul 2019 01:49:49 +0000 (01:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366978 91177308-0d34-0410-b5e6-96231b3b80d8

utils/release/github-upload-release.py

index bbaf2f3427987dbf0ef054709aca7a0cf7f27a44..f0570a9e99ce6891ea887bb827374676d62dd3d1 100755 (executable)
@@ -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.
 # 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.*
 #===------------------------------------------------------------------------===#