diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-04-26 16:22:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-04-26 16:22:17 +0000 |
commit | 58b482856cf37b0519e516ab8dc1105ba958f8b2 (patch) | |
tree | 0c46396e98741dfae4ce907bc8ef8c54418b3753 /build | |
parent | Adding upstream version 1.14.0~rc0. (diff) | |
download | netdata-58b482856cf37b0519e516ab8dc1105ba958f8b2.tar.xz netdata-58b482856cf37b0519e516ab8dc1105ba958f8b2.zip |
Adding upstream version 1.14.0.upstream/1.14.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 |