feat(journal): quiet install when creating entry

This commit is contained in:
Ayo Ayco 2025-06-24 01:07:04 +02:00
parent 7c69f5bf89
commit 1f764dfc61

View file

@ -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"