We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50ca35 commit e820decCopy full SHA for e820dec
debian/autobake-deb.sh
@@ -85,4 +85,17 @@ echo "Creating package version ${UPSTREAM}${PATCHLEVEL}~${CODENAME} ... "
85
# generating the source package.
86
fakeroot dpkg-buildpackage -us -uc -I -b
87
88
+# Don't log package contents on Travis-CI to save time and log size
89
+if [[ ! $TRAVIS ]]
90
+then
91
+ echo "List package contents ..."
92
+ cd ..
93
+ for package in `ls *.deb`
94
+ do
95
+ echo $package | cut -d '_' -f 1
96
+ dpkg-deb -c $package | awk '{print $1 " " $2 " " $6}' | sort -k 3
97
+ echo "------------------------------------------------"
98
+ done
99
+fi
100
+
101
echo "Build complete"
0 commit comments