Skip to content

Commit dee0fc4

Browse files
walison17avelino
authored andcommitted
Single install with all plugins
1 parent 9674ae0 commit dee0fc4

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

‎etc/install-plugins.sh‎

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@ if [ -z "$PLUGINS" ]; then
55
exit 1
66
fi
77

8-
# Split the list of plugins using a comma as the delimiter
9-
IFS=',' read -ra plugins <<< "$PLUGINS"
10-
11-
# Iterate over the libraries and install each one
12-
for plugin in "${plugins[@]}"; do
13-
echo "Installing plugin: $plugin"
14-
pip install "$plugin"
15-
done
8+
packages=$(echo "$PLUGINS" | tr ',' ' ')
9+
pip install $packages
1610

1711
echo "Plugins installation completed."

0 commit comments

Comments
 (0)