Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Localifs #714

Merged
merged 4 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* **Overall**
* [CHANGE] A minor tweak to an internal function, v4m_replace, was made to improve its handling of
some special characters.
* [FIX] Use locally-scoped IFS variable within the display_notices function

* **Metrics**
* [CHANGE] Removed temporary fix (added w/1.2.27) replacing a small number of Grafana dashboards
Expand Down
2 changes: 1 addition & 1 deletion bin/log-include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function add_notice {

function display_notices {
if [ -f "$TMP_DIR/notices.txt" ]; then
IFS=''
local IFS=''
cat $TMP_DIR/notices.txt | while read line || [[ -n "$line" ]];
do
log_notice "$line"
Expand Down