kobo / groovyserv

Groovy's startup acceralator.
http://kobo.github.io/groovyserv/
Other
98 stars 10 forks source link

Fix determining current directory in Windows #62

Closed snake-scaly closed 9 years ago

snake-scaly commented 9 years ago

There is no PWD environment variable in Windows. There is a roughly equivalent CD variable but it is only available to batch scripts. This patch uses the syscall package to determine current directory on any platform, in a portable manner.

nobeans commented 9 years ago

Thanks a lot!