Skip to main content

Add a missing newline

ID
2241d72
date
2024-01-25 08:22:39+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
c192396
message
Add a missing newline
changed files
1 file, 1 addition, 1 deletion

Changed files

fish_functions/append_to_file_if_not_exists.fish (569) → fish_functions/append_to_file_if_not_exists.fish (570)

diff --git a/fish_functions/append_to_file_if_not_exists.fish b/fish_functions/append_to_file_if_not_exists.fish
index b932bd8..6df8e0f 100644
--- a/fish_functions/append_to_file_if_not_exists.fish
+++ b/fish_functions/append_to_file_if_not_exists.fish
@@ -11,4 +11,4 @@ function append_to_file_if_not_exists --description "Append a line to a file, bu
     if not grep --quiet --fixed-strings --line-regexp "$line_to_append" "$target_file" 2>/dev/null
         echo "$line_to_append" >> "$target_file"
     end
-end
\ No newline at end of file
+end