* small optimization, update to changelog
pull/522/head
Josh Rabinowitz 5 years ago committed by GitHub
parent a3d21d2e15
commit 0faad68032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,6 +18,7 @@
- Transition build process from python 2 to python 3 (#487)
- Upgrade build process from ansible 2.5 to ansible 2.8
- Fix in build process when installing gnupg2 source deps on Ubuntu
- Small optimization in 'hide'
- Improve code comments
## Version 0.2.6

@ -132,6 +132,12 @@ function hide {
to_hide+=("$record") # add record to array
done < "$path_mappings"
local recipients
recipients=$(_get_recipients)
local secrets_dir_keys
secrets_dir_keys=$(_get_secrets_dir_keys)
local counter=0
for record in "${to_hide[@]}"; do
local filename
@ -141,12 +147,6 @@ function hide {
fsdb_file_hash=$(_get_record_hash "$record")
encrypted_filename=$(_get_encrypted_filename "$filename")
local recipients
recipients=$(_get_recipients)
local secrets_dir_keys
secrets_dir_keys=$(_get_secrets_dir_keys)
local input_path
local output_path
input_path=$(_append_root_path "$filename")

Loading…
Cancel
Save