5 lines
174 B
Bash
5 lines
174 B
Bash
|
#!/bin/bash
|
||
|
# this is here because teamcity runs /build.sh to build the project
|
||
|
set -euxo pipefail
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
$DIR/build/build.sh
|