This is an automated email from the ASF dual-hosted git repository. nicknezis pushed a commit to branch nicknezis/bazel-2 in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit f27864ea57154931972cc938959ebda55c37fc6c Author: Nicholas Nezis <[email protected]> AuthorDate: Wed Apr 8 13:12:00 2020 -0400 Added debian option to common.sh --- scripts/shutils/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/shutils/common.sh b/scripts/shutils/common.sh index 67502be..feec127 100755 --- a/scripts/shutils/common.sh +++ b/scripts/shutils/common.sh @@ -97,6 +97,8 @@ function discover_platform { echo "centos" elif [[ $discover =~ ^.*Ubuntu.*$ ]]; then echo "ubuntu" + elif [[ $discover =~ ^.*debian.*$ ]]; then + echo "debian" elif [[ $discover =~ ^Darwin.*$ ]]; then echo "darwin" else
