diff options
| author | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-12-27 14:43:27 +0300 |
|---|---|---|
| committer | Maria Lisina <sekoohaka.sarisan@gmail.com> | 2025-12-27 14:43:27 +0300 |
| commit | 8fa25a02014197ca02bf2c4ba02ec18027de46e1 (patch) | |
| tree | 1b3ecbc003a9fa4ea4713848b879a5a807831514 /submodules/command_ping.zsh | |
| parent | 226c6d7590f1e9dfc24b82271af015e3549c8668 (diff) | |
*/*: Use source instead of dot
Signed-off-by: Maria Lisina <sekoohaka.sarisan@gmail.com>
Diffstat (limited to 'submodules/command_ping.zsh')
| -rw-r--r-- | submodules/command_ping.zsh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/submodules/command_ping.zsh b/submodules/command_ping.zsh index 7f76faa..9bca844 100644 --- a/submodules/command_ping.zsh +++ b/submodules/command_ping.zsh @@ -25,7 +25,7 @@ then output_text="Failed to measure latency" log_text="sendMessage (${update_id}): Failed to access Telegram Bot API" - . "${units}/log.zsh" + source "${units}/log.zsh" return 0 fi @@ -37,7 +37,7 @@ then output_text="An unknown error occurred" log_text="sendMessage (${update_id}): An unknown error occurred" - . "${units}/log.zsh" + source "${units}/log.zsh" return 0 fi @@ -54,7 +54,7 @@ then log_text="sendMessage (${update_id}): An unknown error occurred" fi - . "${units}/log.zsh" + source "${units}/log.zsh" return 0 fi @@ -82,7 +82,7 @@ if ! output_data="$( )" then log_text="editMessageText (${update_id}): Failed to access Telegram Bot API" - . "${units}/log.zsh" + source "${units}/log.zsh" exit 0 fi @@ -90,7 +90,7 @@ fi if ! jq -e '.' <<< "${output_data}" > /dev/null then log_text="editMessageText (${update_id}): An unknown error occurred" - . "${units}/log.zsh" + source "${units}/log.zsh" exit 0 fi @@ -106,7 +106,7 @@ then log_text="editMessageText (${update_id}): An unknown error occurred" fi - . "${units}/log.zsh" + source "${units}/log.zsh" fi exit 0 |
