Merge pull request #4420 from esclerofilo/patch-1

Allow password_fill to work without final newline
This commit is contained in:
Jay Kamat 2018-11-12 18:40:26 -08:00 committed by GitHub
commit 3ecf6141fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ pass_backend() {
break
fi
fi
done < <($GPG "${GPG_OPTS[@]}" -d "$path" )
done < <($GPG "${GPG_OPTS[@]}" -d "$path" | awk 1 )
}
}
# =======================================================