mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
19 lines
400 B
Text
19 lines
400 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#install_packages() {
|
||
|
# apt-get -y "${APTGETOPT[@]}" install "$@"
|
||
|
#}
|
||
|
#
|
||
|
#install_packages lintian
|
||
|
|
||
|
echo "+++ lintian output +++"
|
||
|
|
||
|
#su -c "lintian -I --show-overrides /tmp/buildd/*.changes" - pbuilder
|
||
|
# use this version if you don't want lintian to fail the build
|
||
|
su -c "lintian -i -I --show-overrides /tmp/buildd/*.changes; :" - pbuilder
|
||
|
|
||
|
echo "+++ end of lintian output +++"
|
||
|
|