This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 054e9fc00f Fixes hatch command in contributor doc (#40385)
054e9fc00f is described below
commit 054e9fc00f087c0e71cba04d170d66f7182effc5
Author: Aritra Basu <[email protected]>
AuthorDate: Sun Jun 23 01:02:00 2024 +0530
Fixes hatch command in contributor doc (#40385)
The hatch command hatch env shell probably
was meant to be hatch shell. Since env
is a separate command, this was fixed in
the local_virtualenv doc but missed here.
---
contributing-docs/03_contributors_quick_start.rst | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/contributing-docs/03_contributors_quick_start.rst
b/contributing-docs/03_contributors_quick_start.rst
index a717f10d4b..eb84bb668a 100644
--- a/contributing-docs/03_contributors_quick_start.rst
+++ b/contributing-docs/03_contributors_quick_start.rst
@@ -169,7 +169,8 @@ like system, this command will install all necessary
dependencies that should be
libssl-dev locales lsb-release openssh-client sasl2-bin \
software-properties-common sqlite3 sudo unixodbc unixodbc-dev
-3. With Hatch you can enter virtual environment with ``hatch env shell``
command:
+3. With Hatch you can enter the virtual environment with ``hatch shell``
command, check
+ `Local virtualenvs <./07_local_virtualenv.rst#using-hatch>`__ for more
details:
Forking and cloning Project
---------------------------