11 lines
365 B
Bash
Executable File
11 lines
365 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
. /usr/share/gitlab-ci-common
|
|
|
|
apt_get_auto_install lintian
|
|
|
|
echo "performing general and experimental lintian checks"
|
|
su --shell /bin/sh nobody --command "lintian --color always -EviIL +pedantic ../*.changes" || true
|
|
echo "performing ftp-master-rejects lintian checks"
|
|
su --shell /bin/sh nobody --command "lintian --color always -viF ../*.changes"
|