Skip to content

Commit

Permalink
Unzip package zips
Browse files Browse the repository at this point in the history
  • Loading branch information
asteriscos committed Nov 25, 2024
1 parent 6e755a8 commit a32b1d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/test-packages/install-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@
echo $plugins
for plugin in $plugins; do
echo $plugin
/usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin install file:///tmp/$plugin
unzip $plugin -d /unziped/
done
plugins=$(ls /tmp/unziped)
for plugin in $plugins; do
echo $plugin
/usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin install file:///tmp/unziped/$plugin
done

0 comments on commit a32b1d1

Please sign in to comment.