fix: Remove unnecessary blank lines in version update scripts

This commit is contained in:
claudi 2026-02-20 10:13:36 +01:00
parent 6ff3109223
commit 1a78a1f1c9
3 changed files with 6 additions and 6 deletions

View file

@ -40,7 +40,7 @@ update_file() {
# Check if content would change
local content
content=$(cat "$file_path")
# Use sed to update the file (handles both macOS and Linux)
if [[ "$OSTYPE" == "darwin"* ]]; then
# macOS requires -i '' for in-place editing
@ -52,7 +52,7 @@ update_file() {
local new_content
new_content=$(cat "$file_path")
if [[ "$content" == "$new_content" ]]; then
echo -e "${GREEN}$(basename "$file_path") already up-to-date${NC}"
else