Skip to content

Commit

Permalink
Fix __hhs_sysinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
yorevs committed Nov 6, 2024
1 parent d169734 commit fdb5fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/hhs-functions/bash/hhs-sys-utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function __hhs_sysinfo() {
done
fi
if __hhs_has "docker" && __hhs_has "__hhs_docker_ps"; then
read -r -d '' -a containers < <(__hhs_docker_ps -a)
IFS=$'\n' read -r -d '' -a containers < <(__hhs_docker_ps -a)
if [[ ${#containers[@]} -gt 0 && $(__hhs_docker_count) -ge 1 ]]; then
echo -e "\n${GREEN}Online Docker Containers: ${BLUE}"
for next in "${containers[@]}"; do
Expand Down

0 comments on commit fdb5fc7

Please sign in to comment.