diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2023-08-07 15:47:45 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2023-08-07 15:47:45 +0200 |
commit | 7e3b9a4083fe98cf8bda9b3cb03ea04813db8c34 (patch) | |
tree | 2762356a46de4ffe7f1acb313e799b649fa14cef | |
parent | Minor fixes after testing (diff) | |
download | mastermirror-scripts-7e3b9a4083fe98cf8bda9b3cb03ea04813db8c34.tar.gz mastermirror-scripts-7e3b9a4083fe98cf8bda9b3cb03ea04813db8c34.tar.bz2 mastermirror-scripts-7e3b9a4083fe98cf8bda9b3cb03ea04813db8c34.zip |
Silence errors for arches that have not uploaded yet
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rwxr-xr-x | sign-sync-binpackages.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sign-sync-binpackages.sh b/sign-sync-binpackages.sh index c26a3f5..a71f8ba 100755 --- a/sign-sync-binpackages.sh +++ b/sign-sync-binpackages.sh @@ -24,6 +24,7 @@ IN_RSYNC_OPTS=( --archive --delete --delete-after + --ignore-missing-args --update --mkpath ) @@ -34,7 +35,7 @@ OUT_RSYNC_OPTS=( --ignore-errors --delete --delete-after - --timeout=300 + --ignore-missing-args --mkpath ) |