Skip to content

Commit 107850a

Browse files
authored
pass bash as executable and rest of the parameters as arguments (#3731)
* pass bash as executable and rest of the parameters as arguments, otherwise, this fails when running targets in windows OS
1 parent 8a70c67 commit 107850a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,11 @@
189189
<goal>exec</goal>
190190
</goals>
191191
<configuration>
192-
<executable>../validateCLI.sh</executable>
193-
<arguments>
194-
<argument>..</argument>
195-
</arguments>
192+
<executable>bash</executable>
193+
<arguments>
194+
<argument>../validateCLI.sh</argument>
195+
<argument>..</argument>
196+
</arguments>
196197
</configuration>
197198
</execution>
198199
</executions>

0 commit comments

Comments
 (0)