summary refs log tree commit diff
path: root/scripts-dev/next_github_number.sh
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2023-12-13 16:37:10 +0000
committerErik Johnston <erik@matrix.org>2023-12-13 16:37:10 +0000
commit930dc9e2d3efd6d82b86c2205b80d6ccb9b4bb86 (patch)
tree47c9a74f21df24a92c30876b15306c1f7034f2f8 /scripts-dev/next_github_number.sh
parentUpdate book location (diff)
downloadsynapse-930dc9e2d3efd6d82b86c2205b80d6ccb9b4bb86.tar.xz
Fix typo
Diffstat (limited to 'scripts-dev/next_github_number.sh')
-rwxr-xr-xscripts-dev/next_github_number.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/next_github_number.sh b/scripts-dev/next_github_number.sh
index a5780f584c..078fa1cbfc 100755
--- a/scripts-dev/next_github_number.sh
+++ b/scripts-dev/next_github_number.sh
@@ -4,6 +4,6 @@ set -e
 
 # Fetch the current GitHub issue number, add one to it -- presto! The likely
 # next PR number.
-CURRENT_NUMBER=$(curl -s "https://api.github.com/repos/element.-hq/synapse/issues?state=all&per_page=1" | jq -r ".[0].number")
+CURRENT_NUMBER=$(curl -s "https://api.github.com/repos/element-hq/synapse/issues?state=all&per_page=1" | jq -r ".[0].number")
 CURRENT_NUMBER=$((CURRENT_NUMBER+1))
 echo $CURRENT_NUMBER