Skip to content
Snippets Groups Projects
Commit 346b7627 authored by kohleman's avatar kohleman
Browse files

moved if into the plugins for loop

SVN: 19152
parent 4c00a828
No related branches found
No related tags found
No related merge requests found
......@@ -68,9 +68,11 @@ fi
echo Installing datastore server...
cd ..
unzip -q ../datastore_server-*$VER*
if [ -f ../datastore_server_plugin-* ]; then
for file in ../datastore_server_plugin-*$VER*; do unzip -q -d datastore_server $file; done
fi
for file in ../datastore_server_plugin-*$VER*; do
if [ -f $file ]; then
unzip -q -d datastore_server $file;
fi
done
cd datastore_server
cp -p $CONFIG_DIR/datastore_server-service.properties etc/service.properties
if [ -f $KEYSTORE ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment