summaryrefslogtreecommitdiff
path: root/bin/change-git-remotes
diff options
context:
space:
mode:
Diffstat (limited to 'bin/change-git-remotes')
-rwxr-xr-xbin/change-git-remotes10
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/change-git-remotes b/bin/change-git-remotes
index bc8e3f2..fc50b7a 100755
--- a/bin/change-git-remotes
+++ b/bin/change-git-remotes
@@ -3,7 +3,7 @@
# shellcheck source=../lib/load-configuration
. "${0%/*}/../lib/load-configuration"
-if [ $# -eq 1 ] && [ "x$1" = 'x-q' ]; then
+if [ $# -eq 1 ] && [ "$1" = '-q' ]; then
quiet=true
elif [ $# -ne 0 ]; then
printf 'change-git-remotes [-q]\n'
@@ -63,6 +63,14 @@ fi
'' 2 3 4
)
;;
+ 'community'|'packages')
+ new_urls=$(
+ printf '%s\n' \
+ 'git://github.com/archlinux/svntogit-'"${git_name}" \
+ 'https://github.com/archlinux/svntogit-'"${git_name}" \
+ 'git://git.archlinux.org/svntogit/'"${git_name}"'.git'
+ )
+ ;;
*)
new_urls="${url}"
;;