Skip to content

Commit

Permalink
🩹 fix-simple(devcontainer): use register-python-argcomplete3 rather t…
Browse files Browse the repository at this point in the history
…han register-python-argcomplete
  • Loading branch information
jzazo committed Jul 17, 2024
1 parent 9ee119c commit 5c5d80e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/on-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ pip install --upgrade pip
echo "INSTALLING COMMITIZEN"
pipx install commitizen
pipx inject commitizen cz-conventional-gitmoji
echo 'eval "$(register-python-argcomplete cz)"' >> ~/.bashrc
echo 'eval "$(register-python-argcomplete cz)"' >> ~/.zshrc
echo 'eval "$(register-python-argcomplete3 cz)"' >> ~/.bashrc
echo 'eval "$(register-python-argcomplete3 cz)"' >> ~/.zshrc

echo "POETRY INSTALL"
poetry config virtualenvs.in-project true
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/on-create.sh.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ pip install --upgrade pip
echo "INSTALLING COMMITIZEN"
pipx install commitizen
pipx inject commitizen cz-conventional-gitmoji
echo 'eval "$(register-python-argcomplete cz)"' >> ~/.bashrc
echo 'eval "$(register-python-argcomplete cz)"' >> ~/.zshrc
echo 'eval "$(register-python-argcomplete3 cz)"' >> ~/.bashrc
echo 'eval "$(register-python-argcomplete3 cz)"' >> ~/.zshrc
{%- endif %}

echo "POETRY INSTALL"
Expand Down

0 comments on commit 5c5d80e

Please sign in to comment.