Compare commits
2 commits
3cd1a1d718
...
efad854652
Author | SHA1 | Date | |
---|---|---|---|
efad854652 | |||
a596a8868c |
2 changed files with 4 additions and 2 deletions
|
@ -15,7 +15,8 @@ REMOTE_ROOT="https://deb.debian.org/${DEBIAN_ROOT}"
|
|||
|
||||
for dist in "${DISTS[@]}"; do
|
||||
for section in "${SECTIONS[@]}"; do
|
||||
cd "${LOCAL_ROOT}/${dist}/${section}"
|
||||
cd "${LOCAL_ROOT}/${dist}/${section}" ||
|
||||
echo "${ERROR}"
|
||||
rm --force "${MISSING}"
|
||||
wget "${REMOTE_ROOT}/${dist}/${section}/${MISSING}" &>/dev/null ||
|
||||
echo "${ERROR}"
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#! /usr/bin/env bash
|
||||
FILE="$(realpath "${BASH_SOURCE[0]}")"
|
||||
cd "$(dirname "${FILE}")"
|
||||
cd "$(dirname "${FILE}")" ||
|
||||
exit
|
||||
|
||||
ROOT='root/msys2'
|
||||
|
||||
|
|
Loading…
Reference in a new issue