We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I try to use --gpgbin I rec'd command line errors if the value for --gpgbin contains spaces in the path.
So, if I submit:
--gpgbin "C:\Program Files (x86)\foo\bar"
The command line error indicates that "C:\Program" is invalid as it has truncated the value at the first space.
The text was updated successfully, but these errors were encountered:
This was encountered during testing of "verify".
Sorry, something went wrong.
It seems the GPG library I'm using has problems with spaces in Windows filenames you might try:
--gpgbin ""C:\Program Files (x86)\foo\bar\gpg.exe""
or adding GPG to your Path environment variable. Setting path is probably the best way, then you don't have to specify it on the command line.
No branches or pull requests
When I try to use --gpgbin I rec'd command line errors if the value for --gpgbin contains spaces in the path.
So, if I submit:
--gpgbin "C:\Program Files (x86)\foo\bar"
The command line error indicates that "C:\Program" is invalid as it has truncated the value at the first space.
The text was updated successfully, but these errors were encountered: