Skip to content

Commit e96a0e6

Browse files
authored
pass bash as executable and rest of the parameters as arguments, otherwise this fails when running targets in windows OS (#3732)
1 parent 6644ff3 commit e96a0e6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pom.xml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,12 @@
188188
<goals>
189189
<goal>exec</goal>
190190
</goals>
191-
<configuration>
192-
<executable>../validateCLI.sh</executable>
193-
<arguments>
194-
<argument>..</argument>
195-
</arguments>
191+
<configuration>
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)