From c30eb001ff1f9b04e7d75b88653cb4e3ad10ebc9 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 25 Oct 2023 08:22:07 +0200 Subject: Use -V instead of -v for command in venv function --- .config/shell/functions.d/venv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config') diff --git a/.config/shell/functions.d/venv b/.config/shell/functions.d/venv index 50a91e9..c23a02d 100644 --- a/.config/shell/functions.d/venv +++ b/.config/shell/functions.d/venv @@ -1,7 +1,7 @@ #!/bin/sh venv() { - if ! command -v "venv_$1" | grep -q " function " + if ! command -V "venv_$1" | grep -q " function " then cat <