diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-28 10:53:35 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-28 10:55:50 +0200 |
commit | 4e2a1b09caaab4b366086c23f8642cc9f647190e (patch) | |
tree | b0606f7b8be57d0138ff085dd5affdc2bdd03a7e | |
parent | 63e5e0d171e521984b6018f75d4dd420e197785b (diff) | |
download | jenkins.debian.net-4e2a1b09caaab4b366086c23f8642cc9f647190e.tar.xz |
reproducible: maintenance: specify column width to avoid crapping package names (and thus having a nicer output <3)
-rwxr-xr-x | bin/reproducible_maintenance.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index b26ecf48..8732f562 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -170,7 +170,7 @@ sqlite3 -init $INIT ${PACKAGES_DB} "$QUERY" > $PACKAGES 2> /dev/null || echo "Wa if grep -q '|' $PACKAGES ; then echo echo "Warning: packages found where the build was started more than 36h ago:" - sqlite3 -init $INIT -header -column ${PACKAGES_DB} "$QUERY" 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." + printf ".width 0 25 \n $QUERY ; " | sqlite3 -init $INIT -header -column ${PACKAGES_DB} 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." echo for PKG in $(cat $PACKAGES | cut -d "|" -f1) ; do echo "sqlite3 ${PACKAGES_DB} \"DELETE FROM schedule WHERE package_id = '$PKG';\"" @@ -192,7 +192,7 @@ if grep -q '|' $PACKAGES ; then echo echo "Warning: found files relative to old packages, no more in the archive:" echo "Removing these removed packages from database:" - sqlite3 -init $INIT -header -column ${PACKAGES_DB} "$QUERY" 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." + printf ".width 25 12 \n $QUERY ;" | sqlite3 -init $INIT -header -column ${PACKAGES_DB} 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." echo for pkg in $(cat $PACKAGES) ; do PKGNAME=$(echo "$pkg" | cut -d '|' -f 1) |