From 7a76792eaca4bc4a9ebf01509e76c51552338b28 Mon Sep 17 00:00:00 2001 From: thek4n Date: Mon, 28 Oct 2024 11:16:57 +0300 Subject: [PATCH] fix --- home/user/.config/bash/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/user/.config/bash/functions b/home/user/.config/bash/functions index 0809598..00824b0 100644 --- a/home/user/.config/bash/functions +++ b/home/user/.config/bash/functions @@ -60,7 +60,7 @@ va() { source "${1}/bin/activate" return 0 fi - echo "va: error: virtual environment ${1} not found, use python3 -m virtualenv venv" >&2 + echo "va: error: virtual environment ${1} not found, use 'python3 -m virtualenv ${1}'" >&2 return 1 fi @@ -244,7 +244,7 @@ cleanup-downloads() { touch "${log_file}" - echo "$(date -Iseconds) : Start cleanup" | tee -a "${log_file}" + echo "$(date -Iseconds) : Start cleanup" >> "${log_file}" cleanup-directory "${downloads_directory}" | tee -a "${log_file}" }