You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/05/04 11:48:30 UTC

[plc4x] branch develop updated: - Streamlined the calls to run python to be equal for compile and package

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

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 616c3d6  - Streamlined the calls to run python to be equal for compile and package
616c3d6 is described below

commit 616c3d63b7debd02ccef69748a8e52c79a8c0beb
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat May 4 13:48:24 2019 +0200

    - Streamlined the calls to run python to be equal for compile and package
---
 plc4py/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plc4py/pom.xml b/plc4py/pom.xml
index 82fc4b4..661acc7 100644
--- a/plc4py/pom.xml
+++ b/plc4py/pom.xml
@@ -158,9 +158,9 @@
             </goals>
             <configuration>
               <executable>python</executable>
-              <workingDirectory>${project.basedir}</workingDirectory>
+              <workingDirectory>${project.build.directory}/python</workingDirectory>
               <arguments>
-                <argument>setup.py</argument>
+                <argument>../../setup.py</argument>
                 <argument>build</argument>
                 <argument>--build-base=${project.build.directory}/python</argument>
               </arguments>