-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run phpdox with a cloned repository on Windows #299
Comments
It seems the line $git = exec('command -p git describe --always --dirty 2>'.$devNull, $foo, $rc); has to be $git = exec('git describe --always --dirty 2>'.$devNull, $foo, $rc); The phar version runs just fine though. |
Thank you for the additional research and effort. Good catch. I completely forgot about the usage of I'm amazed that "git" without .exe works..? The phar version is unaffected because it's not a git based checkout and thus no git call is performed. |
According to this web site,
And my machine Windows 7 x86 supports the
It seems to be working here even though the program path is not registered for the environment variable. You may want to pay attention to that |
I don't have a windows environment to verify it actually is fixed. |
Hi,
I could successfully generate documents using the phar file. However, it doesn't seem to run with a cloned repository.
composer install
and it downloaded dependencies in thevendor
directory.php phpdox --version
but it just does not respond.Ctrl
+c
does not terminate it so I have to close the console window.Am I missing something?
The text was updated successfully, but these errors were encountered: