Skip to content

Commit 7ed7926

Browse files
committed
ID-26: add MinGW support for 'buildfed.sh'
1 parent d40443a commit 7ed7926

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

CHANGELOG.adoc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
= Changelog
22

3+
== Version 0.9.1
4+
[cols="1,2,<10a", options="header"]
5+
|===
6+
|ID|Type|Description
7+
|https://github.com/Axway-API-Management-Plus/apigw-maven-plugin/issues/26[#26]
8+
|Enhancement
9+
|Add MinGW (Minimalistic GNU for Windows) support for `buildfed.sh`.
10+
11+
Remark: MinGW is provided as part of Git for Windows.
12+
This enhancement allows to execute the plugin within a Git Bash shell on Windows.
13+
|===
14+
15+
316
== Version 0.9.0
417
[cols="1,2,<10a", options="header"]
518
|===

src/main/resources/scripts/buildfed.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
if [ "${AXWAY_HOME}" != "" ]
33
then
44
JYTHON=${AXWAY_HOME}/apigateway/posix/bin/jython
5+
if [ $(uname -o) == "Msys" ]
6+
then
7+
JYTHON=${AXWAY_HOME}/apigateway/Win32/bin/jython.bat
8+
fi
9+
510
if [ -f "${JYTHON}" ]
611
then
712
CMD_HOME=`dirname $0`

0 commit comments

Comments
 (0)