X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-upstream.sh;h=f515b13194d25975bb699f5039ce502032b4872b;hb=17b109cba947aaec9e20266eda1d2cfe4b2779eb;hp=67011b8585cbf4e5696f4fbbf06c2e270a2d60aa;hpb=b2ec35898a51e3563073c8aad966d76b554b128c;p=ctsim.git 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}'"