For now, disable Lintian warnings. In the future, a flag may be used to determine this behaviour.
10 lines
126 B
Bash
Executable File
10 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
dpkg-buildpackage -us -uc -b
|
|
cp ../*.deb builder/build
|
|
lintian ../*.deb || true
|