You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2020/04/08 17:12:51 UTC

[incubator-heron] 01/02: Added debian option to common.sh

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 <ni...@gmail.com>
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