Skip to main content

We don’t need to double-print that we’re creating the venv

ID
0e411c5
date
2023-11-30 20:36:33+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
f339f45
message
We don't need to double-print that we're creating the venv
changed files
1 file, 1 deletion

Changed files

fish_functions/github-clone.fish (1980) → fish_functions/github-clone.fish (1938)

diff --git a/fish_functions/github-clone.fish b/fish_functions/github-clone.fish
index a7ec9d3..ef4ea03 100644
--- a/fish_functions/github-clone.fish
+++ b/fish_functions/github-clone.fish
@@ -51,7 +51,6 @@ function github-clone
         # If this looks like a Python repository, create a virtualenv
         # in the root of the repo.
         if [ -f "requirements.txt" ]
-            echo "Creating virtualenv..."
             venv
         end