Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
scripts: dump discussion: usage: Fix for upstream names with trailing…
Browse files Browse the repository at this point in the history
… forwardslash

Signed-off-by: John Andersen <[email protected]>
  • Loading branch information
pdxjohnny committed Sep 5, 2023
1 parent 749aa00 commit 5467cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dump_discussion.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. code-block:: console
$ python -u scripts/dump_discussion.py --token $(gh auth token) --owner $(git remote get-url upstream | sed -e 's/.*github.com\///g' | sed -e 's/\/.*//g') --repo $(git remote get-url upstream | sed -e 's/.*\///g') --discussion-number 1406 | tee 1406.json
$ python -u scripts/dump_discussion.py --token $(gh auth token) --owner $(git remote get-url upstream | sed -e 's/.*github.com\///g' | sed -e 's/\/.*//g') --repo $(git remote get-url upstream | sed -e 's/\/$//g' -e 's/.*\///g') --discussion-number 1406 | tee 1406.json
"""
import os
import asyncio
Expand Down

0 comments on commit 5467cd7

Please sign in to comment.