Skip to content
Snippets Groups Projects
Commit 02da7e767065 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

windows: adjust PYTHONPATH update in test-status-color.t

On Windows the PATH separator is ";", not ":". The Windows wheel wants it set
with ";".
parent 7c1d7edff91b
No related branches found
No related tags found
2 merge requests!1083Merge stable into default,!1068preparation for Windows Wheel building
......@@ -399,7 +399,13 @@
color coding of error message without curses
$ echo 'raise ImportError' > curses.py
#if windows
$ PYTHONPATH="`pwd`;$PYTHONPATH" hg unknowncommand > /dev/null
hg: unknown command 'unknowncommand'
(use 'hg help' for a list of commands)
[10]
#else
$ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null
hg: unknown command 'unknowncommand'
(use 'hg help' for a list of commands)
[10]
......@@ -402,6 +408,7 @@
$ PYTHONPATH=`pwd`:$PYTHONPATH hg unknowncommand > /dev/null
hg: unknown command 'unknowncommand'
(use 'hg help' for a list of commands)
[10]
#endif
$ cd ..
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment