Skip to content

Commit

Permalink
HADOOP-12899. External distribution stitching scripts do not work cor…
Browse files Browse the repository at this point in the history
…rectly on Windows. Contributed by Chris Nauroth.
  • Loading branch information
cnauroth committed Mar 10, 2016
1 parent 79961ec commit adf1cdf
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions hadoop-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,17 @@
<id>dist</id>
<phase>prepare-package</phase>
<goals>
<goal>exec</goal>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/../dev-support/bin/dist-layout-stitching</executable>
<workingDirectory>${project.build.directory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>${project.version}</argument>
<argument>${project.build.directory}</argument>
</arguments>
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>${basedir}/../dev-support/bin/dist-layout-stitching</argument>
<argument>${project.version}</argument>
<argument>${project.build.directory}</argument>
</arguments>
</configuration>
</execution>
<execution>
Expand All @@ -109,12 +110,13 @@
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/../dev-support/bin/dist-tar-stitching</executable>
<executable>${shell-executable}</executable>
<workingDirectory>${project.build.directory}</workingDirectory>
<requiresOnline>false</requiresOnline>
<arguments>
<argument>${project.version}</argument>
<argument>${project.build.directory}</argument>
<argument>${basedir}/../dev-support/bin/dist-tar-stitching</argument>
<argument>${project.version}</argument>
<argument>${project.build.directory}</argument>
</arguments>
</configuration>
</execution>
Expand Down

0 comments on commit adf1cdf

Please sign in to comment.