From 126d737d9df6cfb23a859d40ea94b3ea021351f1 Mon Sep 17 00:00:00 2001 From: Siina Mashek Date: Fri, 19 Apr 2024 11:59:57 +0300 Subject: [PATCH] Fixing some var passing in noter --- common/noter | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/noter b/common/noter index c60edab..d853509 100755 --- a/common/noter +++ b/common/noter @@ -15,6 +15,6 @@ if [ -z "$1" ]; then elif [[ "$1" -eq "publish" ]]; then publish else - echo -e "

$(echo $timestamp): ${1}

\n" >> $current_note + echo -e "

$(echo $timestamp): ${@}

\n" >> $current_note fi