Skip to content

Commit

Permalink
fix printing error message
Browse files Browse the repository at this point in the history
  • Loading branch information
aleskxyz committed Jul 2, 2023
1 parent 3cea656 commit bb04aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reality-ezpz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1805,7 +1805,7 @@ function check_reload {
restart_tgbot_compose
fi
if [[ "${config[tgbot]}" == 'OFF' ]]; then
${docker_cmd} --project-directory ${config_path}/tgbot -p ${tgbot_project} down --remove-orphans --timeout 2 || true
${docker_cmd} --project-directory ${config_path}/tgbot -p ${tgbot_project} down --remove-orphans --timeout 2 >/dev/null 2>&1 || true
fi
for key in "${!restart[@]}"; do
if [[ $key != 'none' && $key != 'tgbot' ]]; then
Expand Down

0 comments on commit bb04aa7

Please sign in to comment.