summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-08-05 18:17:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-17 20:19:25 +0000
commite895c616920a378f12b5c436571551e0b70fc5b4 (patch)
tree1944092d8969c651ea7e86dd0ab8be81c65907c9
parentUpdating. (diff)
downloadprogress-linux-tools-e895c616920a378f12b5c436571551e0b70fc5b4.tar.xz
progress-linux-tools-e895c616920a378f12b5c436571551e0b70fc5b4.zip
Updating.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-xbin/git-debian-changelog4
-rwxr-xr-xweb/update7
2 files changed, 7 insertions, 4 deletions
diff --git a/bin/git-debian-changelog b/bin/git-debian-changelog
index c514cf9..a1bd245 100755
--- a/bin/git-debian-changelog
+++ b/bin/git-debian-changelog
@@ -189,9 +189,9 @@ fi
if [ -n "${ID}" ]
then
- gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --debian-branch $(git branch --show-current) --git-author --release --since ${ID} ${CUSTOMIZATION} ${@}
+ echo | gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --debian-branch $(git branch --show-current) --git-author --release --since ${ID} ${CUSTOMIZATION} ${@}
else
- gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --auto --debian-branch $(git branch --show-current) --git-author --release ${CUSTOMIZATION} ${@}
+ echo | gbp dch --spawn-editor=never ${DISTRIBUTION} ${VERSION} --urgency ${URGENCY} --git-log="--no-show-signature" --auto --debian-branch $(git branch --show-current) --git-author --release ${CUSTOMIZATION} ${@}
fi
if [ -n "${DIST}" ]
diff --git a/web/update b/web/update
index 2575031..cd2d1e1 100755
--- a/web/update
+++ b/web/update
@@ -46,7 +46,7 @@ case "${MODE}" in
graograman)
#UPSTREAM_DISTRIBUTIONS="bookworm bookworm-updates bookworm-proposed-updates"
- UPSTREAM_DISTRIBUTIONS="sid experimental"
+ UPSTREAM_DISTRIBUTIONS="sid"
DOWNSTREAM_DISTRIBUTION="graograman"
DOWNSTREAM_MIRROR="https://apt.progress-linux.org/packages"
DOWNSTREAM_TAG="progress"
@@ -139,7 +139,10 @@ Download_upstream_indices ()
;;
*)
- wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
+ if wget -q -O /dev/null "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz"
+ then
+ wget -q -O - "http://security.debian.org/dists/${DISTRIBUTION}/updates/${SECTION}/binary-${ARCHITECTURE}/Packages.xz" | xz -d >> "upstream.${MODE}.binaries"
+ fi
;;
esac
done