From 1f764dfc61e2eaf5ebb8a2076924acbd393681e1 Mon Sep 17 00:00:00 2001 From: Ayo Date: Tue, 24 Jun 2025 01:07:04 +0200 Subject: [PATCH] feat(journal): quiet install when creating entry --- journal.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/journal.sh b/journal.sh index de4716a..db466b0 100755 --- a/journal.sh +++ b/journal.sh @@ -17,7 +17,7 @@ function createEntry() { { # IF Not Exists: create file & echo date if ! test -f "$full_path"; then - install -Dv /dev/null "$full_path" + install -Dv /dev/null "$full_path" >/dev/null # TODO: update to correct heading from old entries date_heading=$(date +'%b %d, %Y, %a %r') echo $date_heading > "$full_path"