summaryrefslogtreecommitdiff
path: root/archPackagesUpdate
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-11-12 20:20:20 +0100
committerErich Eckner <git@eckner.net>2020-11-15 18:34:55 +0100
commit097d6c18f4c6048f7b83b3e9d054c5347d0f0b82 (patch)
tree3fdcc1a14913e5435c8c58fa5f0e644de67ea2e4 /archPackagesUpdate
parent048fad843e3821bf507363007f17ef583f1f5388 (diff)
downloadarchlinuxewe.git.save-097d6c18f4c6048f7b83b3e9d054c5347d0f0b82.tar.xz
archPackagesUpdate: do not fetch sources in cache
Diffstat (limited to 'archPackagesUpdate')
-rwxr-xr-xarchPackagesUpdate17
1 files changed, 0 insertions, 17 deletions
diff --git a/archPackagesUpdate b/archPackagesUpdate
index 2b68abf4..eae81cf5 100755
--- a/archPackagesUpdate
+++ b/archPackagesUpdate
@@ -431,23 +431,6 @@ fi
maxErr=0
-# update git sources
-find "${SRCDEST}" -mindepth 2 -maxdepth 2 \( \
- -name 'HEAD' \
- -o -name '.git' \
-\) | \
- sed 's|/[^/]*$||' | \
- while read -r repo; do
- git -C "${repo}" fetch --all -p
- git -C "${repo}" fetch origin master:master
- done
-# update svn sources
-find "${SRCDEST}" -mindepth 2 -maxdepth 2 -name '.svn' | \
- sed 's|/[^/]*$||' | \
- while read -r repo; do
- svn update "${repo}"
- done
-
# build packages
for ((i=0; i<${#pakete[@]}; i++)); do
paket="${pakete[${i}]}"