diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-12 22:27:52 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-12 22:27:52 (EDT) |
commit | 769e9284d4a6a952e4f0bbde5e9120fcb423c570 (patch) | |
tree | 163c4383a5a7d19d99069891220044e136185bea | |
parent | f1b571727fbba26e5f328bcd6c19838966359244 (diff) |
ob_reduce_deps(): Replace echo with printf
-rw-r--r-- | lib/deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/deps.sh b/lib/deps.sh index 5ccaef7..64553aa 100644 --- a/lib/deps.sh +++ b/lib/deps.sh @@ -279,7 +279,7 @@ ob_reduce_deps() done unset IFS - echo "${dep_list}" + printf '%s' "${dep_list}" return 0 } |