Tom Limoncelli
Tom Limoncelli
Sorry for being unclear. Question: Should newRR() simply remove the outer quotes (if they exist) or should it de-escape interior double-quotes too? I expected it to do the latter. I...
If you get "gpg: decryption failed: No secret key" it often means a file was not re-encrypted with the new key. Does that help?
This is due to how gpg works, not how blackbox works. You can control this, somewhat by setting the umask: export DECRYPT_UMASK=0277 Does that help?
The filenames listed in blackbox-files.txt should not include the base path. That is, they should be relative to the repo base directory. Delete `c/users/"user"/documents/github/` from the line in`blackbox-files.txt` and it...
I believe this is fixed. Please try the latest "master".
@thedjdoorn Can we chat off-line about that PR? I want to find out how we can support your efforts.
I can't reproduce this problem. It should be in either vcs_relative_path(), get_unencrypted_filename() or get_encrypted_filename() but this test script doesn't demonstrate the problem: ``` #!/usr/bin/env bash # # _blackbox_common_test.sh -- Unit...
I'm on Mac OS X 10.11.5, but I doubt that's going to cause any differences. What happens when you run the script as: `bash -x /path/to/script.sh`
Check the lines that look like this and make sure they start with ". " (dot space): ``` set -e . "${0%/*}/_blackbox_common.sh" . /Users/tlimoncelli/gitwork/blackbox/tools/test_functions.sh ```
Try changing `. "${0%/*}/_blackbox_common.sh"` to `. /the/path/to/_blackbox_common.sh` (i.e. the actual path to the file).