Skip to content

Commit

Permalink
cygwin support added (#7)
Browse files Browse the repository at this point in the history
Co-authored-by: jandrlik <[email protected]>
  • Loading branch information
andrlos and jandrlik authored Feb 26, 2024
1 parent 236937b commit 633fa62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testHeadlessComponents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ elif [ "$platform" == "Darwin" ]; then
JAVA=$JAVA_HOME/bin/java
#JAVA=java
elif [ "${platform#"MINGW64_NT"}" != "$platform" ]; then
# Windows (Cygwin) specific code
# Windows (MinGW) specific code
OS="windows"
JAVA=$JAVA_HOME/bin/java
elif [ "${platform#"CYGWIN_NT"}" != "$platform" ]; then
# Windows (CygWin) specific code
OS="windows"
JAVA=$JAVA_HOME/bin/java
else
Expand Down

0 comments on commit 633fa62

Please sign in to comment.