7 lines
152 B
Bash
Executable File
7 lines
152 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
if echo $TRAVIS_TAG | grep ^v; then BUILD_TYPE=RelWithDebInfo; else BUILD_TYPE=Debug; fi
|
|
|
|
export BUILD_TYPE
|
|
dpkg-buildpackage -b -us -uc
|