You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by fr...@apache.org on 2018/12/04 22:43:58 UTC

calcite-avatica-go git commit: [CALCITE-2724] Exclude .md files from import path check in release script to avoid false positives

Repository: calcite-avatica-go
Updated Branches:
  refs/heads/master 74c8465d9 -> 36d18fc4f


[CALCITE-2724] Exclude .md files from import path check in release script to avoid false positives


Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/commit/36d18fc4
Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/tree/36d18fc4
Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/diff/36d18fc4

Branch: refs/heads/master
Commit: 36d18fc4f408f57c1dedddcfe2fcda2fbe44d1b8
Parents: 74c8465
Author: Francis Chuang <fr...@apache.org>
Authored: Wed Dec 5 09:39:42 2018 +1100
Committer: Francis Chuang <fr...@apache.org>
Committed: Wed Dec 5 09:42:52 2018 +1100

----------------------------------------------------------------------
 make-release-artifacts.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/36d18fc4/make-release-artifacts.sh
----------------------------------------------------------------------
diff --git a/make-release-artifacts.sh b/make-release-artifacts.sh
index 230e905..6051880 100755
--- a/make-release-artifacts.sh
+++ b/make-release-artifacts.sh
@@ -68,7 +68,7 @@ badImportPaths=false
 
 for i in $(git ls-files); do
 
-    if [[ "$i" == "make-release-artifacts.sh" ]]; then
+    if [[ "$i" == "make-release-artifacts.sh" || "$i" =~ \.md$ ]]; then
         continue
     fi