Skip to content
Snippets Groups Projects
Commit a261776a authored by Oz Linden's avatar Oz Linden
Browse files

merge cygwin fix

parents 4be01b73 9635923d
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,8 @@
_autobuild=os.getenv('AUTOBUILD',
'autobuild' if not ( sys.platform == 'win32' or sys.platform == 'cygwin')
else 'autobuild.cmd')
# HACK: temporarily work around cygwin /cygdrive/c madness
_autobuild = re.sub(r"^/cygdrive/(.)/", r"\1:/", _autobuild)
pkg_line=re.compile('^([\w-]+):\s+(.*)$')
......
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