Skip to content

Commit

Permalink
[qa][blender] fix missing addons folder for Blender addon installatio…
Browse files Browse the repository at this point in the history
…n script
  • Loading branch information
EvanBldy committed Feb 15, 2022
1 parent 0f5d7ba commit adadf98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connectors/blender/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Do_Install()
{
echo "Installation of the plugin."
if [[ $OSTYPE == 'darwin'* ]]; then
BLENDER_ADDONS_PATH=~/Library/Application\ Support/Blender/$BLENDER_VERSION/scripts
BLENDER_ADDONS_PATH=~/Library/Application\ Support/Blender/$BLENDER_VERSION/scripts/addons
else
BLENDER_ADDONS_PATH=~/.config/blender/$BLENDER_VERSION/scripts
BLENDER_ADDONS_PATH=~/.config/blender/$BLENDER_VERSION/scripts/addons
fi

"$PYTHON_EXECUTABLE" -m pip install "$SCRIPT_PATH" -t "$BLENDER_ADDONS_PATH/modules" -U
Expand Down

0 comments on commit adadf98

Please sign in to comment.