diff options
author | Erich Eckner <git@eckner.net> | 2020-11-12 20:20:20 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-11-15 18:34:55 +0100 |
commit | 097d6c18f4c6048f7b83b3e9d054c5347d0f0b82 (patch) | |
tree | 3fdcc1a14913e5435c8c58fa5f0e644de67ea2e4 /archPackagesUpdate | |
parent | 048fad843e3821bf507363007f17ef583f1f5388 (diff) | |
download | archlinuxewe-097d6c18f4c6048f7b83b3e9d054c5347d0f0b82.tar.xz |
archPackagesUpdate: do not fetch sources in cache
Diffstat (limited to 'archPackagesUpdate')
-rwxr-xr-x | archPackagesUpdate | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/archPackagesUpdate b/archPackagesUpdate index 2b68abf44..eae81cf55 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}]}" |