From 7fbf0e579b85a0bf9abc6b9f6dd43b6f973940c1 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 12 Aug 2016 11:19:28 -0700 Subject: debian: upload_debs.sh was a bit too aggressive in filtering out cruft --- tools/debs/upload_debs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/debs/upload_debs.sh b/tools/debs/upload_debs.sh index c14096997..dc807bf9a 100755 --- a/tools/debs/upload_debs.sh +++ b/tools/debs/upload_debs.sh @@ -67,7 +67,7 @@ fi # Generate the TAR file to be uploaded. echo "Creating UHD source archive." -tar --exclude='*git*' --exclude='./debian' --exclude='*.swp' --exclude='fpga-src' --exclude='build' --exclude='./images/*.pyc' --exclude='./images/uhd-*' --exclude='tags' -cJf ../uhd_${VERSION}.orig.tar.xz . +tar --exclude='.git*' --exclude='./debian' --exclude='*.swp' --exclude='fpga-src' --exclude='build' --exclude='./images/*.pyc' --exclude='./images/uhd-*' --exclude='tags' -cJf ../uhd_${VERSION}.orig.tar.xz . if [ $? != 0 ] then echo "Failed to create UHD source archive." -- cgit v1.2.3 From 5754a847e6ac367cfec71ffac1015d75f9f49122 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 12 Aug 2016 12:13:43 -0700 Subject: debian: Removed precise from the list of supported distros for the 3.10 and up --- tools/debs/upload_debs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/debs/upload_debs.sh b/tools/debs/upload_debs.sh index dc807bf9a..831eeb248 100755 --- a/tools/debs/upload_debs.sh +++ b/tools/debs/upload_debs.sh @@ -45,7 +45,7 @@ ORIG_RELEASE=`head -1 host/cmake/debian/changelog | sed 's/.*) \(.*\);.*/\1/'` # Currently supported versions can be found here: # https://launchpad.net/ubuntu/+ppas # -RELEASES="precise trusty vivid wily xenial" +RELEASES="trusty vivid wily xenial" PPA=ppa:ettusresearch/uhd # -- cgit v1.2.3