summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-11-20 19:00:59 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2019-11-20 19:00:59 +0100
commitf1979b09d289c6e3a5f0327e6ed0627efbd0e726 (patch)
tree3d9a5bcc102d5af06dd51942849c0e05c4cc1cdd
parentbcc6ef35bb929e6939c452532526f7a33c3eeab8 (diff)
downloadasp32-0.5.1.tar.xz
fixed locations of archlinux32 reposHEADv0.5.10.5.1master
-rw-r--r--asp32.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/asp32.in b/asp32.in
index 6b384cc..e880ef4 100644
--- a/asp32.in
+++ b/asp32.in
@@ -137,7 +137,7 @@ initialize() {
if [[ "${remote}" = *64 ]]; then
git remote add "$remote" "https://git.archlinux.org/svntogit/${remote%64}.git" || return 1
elif [[ "${remote}" = *32 ]]; then
- git remote add "$remote" "https://git.archlinux32.org/archlinux32/${remote%32}.git" || return 1
+ git remote add "$remote" "https://git.archlinux32.org/${remote%32}" || return 1
fi
done
@@ -309,7 +309,7 @@ action__set-git-protocol() {
if [[ "${remote}" = *64 ]]; then
git remote set-url "$remote" "$1://git.archlinux.org/svntogit/${remote%64}.git"
elif [[ "${remote}" = *32 ]]; then
- git remote set-url "$remote" "$1://git.archlinux32.org/archlinux32/${remote%32}.git"
+ git remote set-url "$remote" "$1://git.archlinux32.org/${remote%32}"
fi
done
}