[llvm] r366978 - github-upload-release.py: Fix script name in examples
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 24 18:49:50 PDT 2019
Author: tstellar
Date: Wed Jul 24 18:49:49 2019
New Revision: 366978
URL: http://llvm.org/viewvc/llvm-project?rev=366978&view=rev
Log:
github-upload-release.py: Fix script name in examples
Modified:
llvm/trunk/utils/release/github-upload-release.py
Modified: llvm/trunk/utils/release/github-upload-release.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/release/github-upload-release.py?rev=366978&r1=366977&r2=366978&view=diff
==============================================================================
--- llvm/trunk/utils/release/github-upload-release.py (original)
+++ llvm/trunk/utils/release/github-upload-release.py Wed Jul 24 18:49:49 2019
@@ -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.*
#===------------------------------------------------------------------------===#
More information about the llvm-commits
mailing list