-
Notifications
You must be signed in to change notification settings - Fork 194
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
genkey.sh in fbs/gpg-generator has windows line endings and fails #306
Comments
Hi and thank you for buying Pro. I cannot reproduce this. Could it be that you have |
My git config setting is "input". |
You're right. I had When did you buy Pro? So I can give you access to the fixed version. |
I bought it 2024-12-19. Thank you for your great software and your quick response! As you mentioned that you are planning to create a fixed version: please check the executable bit of fbs/installer/mac/create-dmg/create-dmg. On MacOS i got a "permission denied" because it was attempted to execute create-dmg, but the executable bit is not set in the downloaded .tar.gz file. |
Both issues should be fixed now in 1.2.7. |
Hi, I have bought a license for fbs Pro.
OS: Linux Mint 21.3
Python 3.12.8
fbs Pro 1.2.5
pyinstaller 6.11.1
PyQT 6.8.0
Command: fbs gengpgkey
Error message:
subprocess.CalledProcessError: Command '['docker', 'run', '-t', '-v', '/dev/urandom:/dev/random', 'fbs/gpg-generator', '/root/genkey.sh', 'Foo Bar', '[email protected]', 'foobar']' returned non-zero exit status 1.
After manually executing the genkey.sh script in the docker container I found the error message:
bash: ./genkey.sh: cannot execute: required file not found
This message is a bit misleading, it is caused by Windows line endings in the genkey.sh script.
After eliminating the Carriage Return characters with
sed -i 's/\r$//' /root/genkey.sh
the script worked.But of course this change does not persist when I exit the running container.
Please fix the docker image.
The text was updated successfully, but these errors were encountered: