Skip to content
Snippets Groups Projects
Commit a5113302 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 b7474f21
No related merge requests found
......@@ -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