From 22d79867c85978ff04526574af09d9b715695465 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 11 Feb 2019 15:16:24 -0500 Subject: [PATCH] Reorganize builddeb to preserve git tree The git tree is needed to successfully build --- confluent_server/builddeb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/confluent_server/builddeb b/confluent_server/builddeb index ed5d72b4..32719749 100755 --- a/confluent_server/builddeb +++ b/confluent_server/builddeb @@ -2,9 +2,10 @@ cd `dirname $0` PKGNAME=$(basename $(pwd)) DPKGNAME=$(basename $(pwd) | sed -e s/_/-/) -mkdir -p /tmp/$DPKGNAME -cp -a * .git /tmp/$DPKGNAME -cd /tmp/$DPKGNAME +cd .. +mkdir -p /tmp/confluent # $DPKGNAME +cp -a * .git /tmp/confluent # $DPKGNAME +cd /tmp/confluent/$PKGNAME if [ -x ./makeman ]; then ./makeman fi