Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2930#discussion_r245480567
--- Diff: storm-client/pom.xml ---
@@ -240,6 +240,29 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <configuration>
+ <executable>python2.7</executable>
--- End diff --
I'd like the storm-client build to still work on Windows. One option would
be to only run this execution when the OS is UNIX-y, e.g.
```
<profile>
<activation>
<os><family>unix</family></os>
</activation>
<plugin-config-here/>
</profile>
```
---