Skip to content

Commit e7afbcf

Browse files
author
Daniel Borup
committed
Fix bash launcher for MinGW calls
1 parent bbd1553 commit e7afbcf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

launch/gpi.command

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ elif [ "$(uname)" == "Linux" ]; then
5252
$PYTHON $GPI_LAUNCH -style cleanlooks $@
5353
# Windows
5454
else
55-
python -u gpi_launch -style Windows $@
55+
GPI_LAUNCH=${ANACONDA}/Scripts/gpi_launch
56+
PYTHON=${ANACONDA}/python
57+
${PYTHON} -u ${GPI_LAUNCH} -style Windows $@
5658
fi
5759

5860

0 commit comments

Comments
 (0)