Skip to content

Commit

Permalink
fix(dispatch): fix the dispatch script (#2017)
Browse files Browse the repository at this point in the history
Fixes #1995
Follow-up to #1972
  • Loading branch information
carlcsaposs-canonical authored Dec 10, 2024
1 parent 9ff19c3 commit 7f23872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charmcraft/dispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
venv_bin_path="${{dispatch_path}}/venv/bin"
python_path="${{venv_bin_path}}/python"
if [ ! -e "${{python_path}}" ]; then
mkdir -p "{{venv_bin_path}}"
mkdir -p "${{venv_bin_path}}"
ln -s $(which python3) "${{python_path}}"
fi
Expand Down

0 comments on commit 7f23872

Please sign in to comment.