don’t bother printing here
- ID
420f283- date
2024-10-02 06:32:41+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
c9e6b35- message
don't bother printing here- changed files
1 file, 1 deletion
Changed files
fish_functions/venv.fish (982) → fish_functions/venv.fish (886)
diff --git a/fish_functions/venv.fish b/fish_functions/venv.fish
index 6cded94..c1ff69c 100644
--- a/fish_functions/venv.fish
+++ b/fish_functions/venv.fish
@@ -10,7 +10,6 @@ function venv --description "Create and activate a new virtual environment"
# I don't want venvs in my home directory; block it if I try
if test "$PWD" = "$HOME"
- echo "You can't create a venv in your home directory; switching to temporary directory" >&2
cd $(mktemp -d)
end