From 17b109cba947aaec9e20266eda1d2cfe4b2779eb Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 6 May 2002 23:09:30 +0000 Subject: [PATCH] r1980: *** empty log message *** --- make-upstream.sh | 12 ++++++++++++ upload.sh | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/make-upstream.sh b/make-upstream.sh index 67011b8..f515b13 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -38,6 +38,18 @@ PACKAGE_DIR=/usr/local/src/Packages/${DEBPKG} DISTDIR=${PKG}-${VERSION} DEBDIR=${DEBPKG}-${VERSION} +if [ -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then + echo "File ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz already exists." + echo -n "Are you sure that you want to create a new upstream source (y/N): " + read answer + case $answer in + [Yy]*) nop= ;; + *) echo "Not building" + exit 1 + ;; + esac +fi + if [ ! -z ${opt_tag} ]; then UPSTREAM_TAG=upstream_version_`echo ${VERSION} | tr . _` echo "(Re-)tagging with Upstream tag '${UPSTREAM_TAG}'" diff --git a/upload.sh b/upload.sh index 992ca1c..e6c546e 100755 --- a/upload.sh +++ b/upload.sh @@ -43,7 +43,7 @@ if [ "${opt_upstream}" == "1" ]; then UPSTREAM_DIR=ftp.med-info.com:/home/ftp/pub/${PKG}/. scp ${PKG}-${VERSION}.tar.gz ${UPSTREAM_DIR} scp ${PKG}-${VERSION}.zip ${UPSTREAM_DIR} - ssh ftp.med-info.com "(cd /opt/apache/htdocs/www.${PKG}.org; make)" & + ssh ftp.med-info.com "(cd /opt/apache/htdocs/${PKG}.org; make)" & fi echo "Uploading to Debian site" -- 2.34.1