You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by fo...@apache.org on 2020/04/11 06:54:40 UTC

[avro] branch master updated: AVRO-2791: Fix lang/py3/build.sh to process each argument separately (#852)

This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 9af218d  AVRO-2791: Fix lang/py3/build.sh to process each argument separately (#852)
9af218d is described below

commit 9af218d3c060da103868cdc69d7b39fc8d50dcbc
Author: Kengo Seki <se...@apache.org>
AuthorDate: Sat Apr 11 15:54:34 2020 +0900

    AVRO-2791: Fix lang/py3/build.sh to process each argument separately (#852)
---
 lang/py3/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/py3/build.sh b/lang/py3/build.sh
index fc4564f..4ed6056 100755
--- a/lang/py3/build.sh
+++ b/lang/py3/build.sh
@@ -33,8 +33,8 @@ main() {
       clean|dist|isort|test) :;;
       *) usage; return 1;;
     esac
+    python3 setup.py "$target"
   done
-  python3 setup.py "$@"
 }
 
 main "$@"