Skip to content

Commit

Permalink
Install plugins from pip-install.txt file if it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalp committed Dec 6, 2023
1 parent 78b8a53 commit 8319de7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dev
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,12 @@ bootstrap_plugins() {
echo "Skipping plugin bootstrap for: $plugin_name"
fi
done

pip_install="$MISAGO_PLUGINS/pip-install.txt"
if [ -f $pip_install ]; then
echo "Installing: $pip_install"
pip install -r $pip_install
fi
else
echo "Skipping plugin bootstrap because plugins directory doesn't exist."
fi
Expand Down

0 comments on commit 8319de7

Please sign in to comment.