Skip to content

Commit

Permalink
Use "poetry add" command
Browse files Browse the repository at this point in the history
  • Loading branch information
connortann committed Feb 9, 2022
1 parent 669b368 commit d4d3fac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ runs:
$poetry_ config virtualenvs.path ${{ inputs.virtualenvs-path }}
# Install plugins from whitespace or commas-delimited list
plugins=(`echo $${{ inputs.plugins }} | tr ',' ' '`)
plugins=(`echo "${{ inputs.plugins }}" | tr ',' ' '`)
for plugin in "${plugins[@]}"
do
echo "Installing plugin: $plugin"
$poetry_ install $plugin
$poetry_ plugin add $plugin
done
config="$($poetry_ config --list)"
Expand Down

0 comments on commit d4d3fac

Please sign in to comment.