diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-09-03 10:23:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-09-03 10:23:48 +0000 |
commit | cd7ed12292aef11d9062b64f61215174e8cc1860 (patch) | |
tree | 9998ab03d153956743d9319cf3a0279b9593ce36 /build | |
parent | Releasing debian version 1.16.1-6. (diff) | |
download | netdata-cd7ed12292aef11d9062b64f61215174e8cc1860.tar.xz netdata-cd7ed12292aef11d9062b64f61215174e8cc1860.zip |
Merging upstream version 1.17.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build')
-rwxr-xr-x | build/build.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/build/build.sh b/build/build.sh deleted file mode 100755 index 892a7da98..000000000 --- a/build/build.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -if [ ! -f .gitignore ]; then - echo "Run as ./travis/$(basename "$0") from top level directory of git repository" - exit 1 -fi - -if [ "$IS_CONTAINER" != "" ]; then - autoreconf -ivf - ./configure --enable-maintainer-mode - make dist - rm -rf autom4te.cache -else - docker run --rm -it \ - --env IS_CONTAINER=TRUE \ - --volume "${PWD}:/project:Z" \ - --workdir "/project" \ - netdata/builder:gcc \ - ./build/build.sh -fi |