summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-03-09 09:03:51 -0400
committerNick Mathewson <nickm@torproject.org>2020-03-09 09:03:51 -0400
commit8096f3b2549971e120fa3869ea9e458fdad313d5 (patch)
treed989289c46293bbe18a1cf85a32ccf0ec8173c91 /scripts
parent1da0b05a5cace6ed05244e3e2c12e4babd4641fa (diff)
downloadtor-8096f3b2549971e120fa3869ea9e458fdad313d5.tar.gz
tor-8096f3b2549971e120fa3869ea9e458fdad313d5.zip
Revert "scripts: Remove typo in git-list-tor-branches.sh"
This reverts commit a63b4148229ae8ce46494fd6a0f99149c231605c. The "typo" wasn't actually a typo. The "r" in the suffixes for the release branches is meant to make them distinct from the maint branches. Now, _right now_, nothing uses release branch suffixes, but it's important to keep them distinct if we decide to use them in the future.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/git/git-list-tor-branches.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git/git-list-tor-branches.sh b/scripts/git/git-list-tor-branches.sh
index d2c71a41ed..d6b30f064f 100755
--- a/scripts/git/git-list-tor-branches.sh
+++ b/scripts/git/git-list-tor-branches.sh
@@ -81,7 +81,7 @@ branch() {
location="\$GIT_PATH/\$TOR_WKT_NAME/$brname"
is_maint="yes"
elif [[ "$brname" =~ ^release- ]]; then
- suffix="_${brname_nodots#release-}"
+ suffix="_r${brname_nodots#release-}"
location="\$GIT_PATH/\$TOR_WKT_NAME/$brname"
if [[ "$skip_release_branches" = "yes" ]]; then