diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 22:48:58 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 22:48:58 (EDT) |
commit | 89da832a27581796041bf0373f0aee7c804425ec (patch) | |
tree | 6842076e3c575711ff3d80b0c8b5790306ef9110 | |
parent | 21da29b24e9676fced7bcc7b398d6c2f9ed369f9 (diff) |
install_find_pkgs(): Fix cert file printf
-rw-r--r-- | src/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.sh b/src/install.sh index 4486103..8b97d4f 100644 --- a/src/install.sh +++ b/src/install.sh @@ -154,7 +154,7 @@ install_find_pkgs() return 1 fi cert_fd=${FD} - printf '%s\n---' "${cert_url}" >&${cert_fd} + printf '%s\n---\n' "${cert_url}" >&${cert_fd} IFS="${LF}" printf 'K: %s\n' ${root_key} >&${cert_fd} unset IFS |