summary refs log tree commit diff
path: root/scripts-dev/next_github_number.sh
diff options
context:
space:
mode:
authorDan Callahan <danc@element.io>2021-10-27 21:36:18 +0100
committerGitHub <noreply@github.com>2021-10-27 21:36:18 +0100
commita1ba7a850aaad51799ce77006ac5e8a425881765 (patch)
treeaa501e65702a3e3fb179c3a0c37dc15543637f72 /scripts-dev/next_github_number.sh
parentAnnotate `log_function` decorator (#10943) (diff)
parentMerge remote-tracking branch 'origin/develop' into shellcheck (diff)
downloadsynapse-a1ba7a850aaad51799ce77006ac5e8a425881765.tar.xz
Update scripts to pass Shellcheck lints (#11166)
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 00e9b14569..5ecd515127 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/matrix-org/synapse/issues?state=all&per_page=1" | jq -r ".[0].number"`
+CURRENT_NUMBER=$(curl -s "https://api.github.com/repos/matrix-org/synapse/issues?state=all&per_page=1" | jq -r ".[0].number")
 CURRENT_NUMBER=$((CURRENT_NUMBER+1))
 echo $CURRENT_NUMBER