Skip to content
Snippets Groups Projects
Commit ad5841f0 authored by felmer's avatar felmer Committed by Juan Fuentes
Browse files

SSDM-11786: bug fixed in run-console.sh in if statement

parent 54e2ca6d
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ if [ -z "$install_path" ]; then
exit 1
fi
if [[ -d "$install_path/bin" && -d "$install_path/servers/core-plugins" && -d "$install_path/servers/datastore_server" && "$install_path/servers/openBIS-server" ]]; then
if [[ -d "$install_path/bin" && -d "$install_path/servers/core-plugins" && -d "$install_path/servers/datastore_server" && -d "$install_path/servers/openBIS-server" ]]; then
echo "Previous openBIS installation detected. Upgrading..."
else
dss_root_dir=$( grep -e "^DSS_ROOT_DIR=.*$" $BASE/console.properties | sed "s/DSS_ROOT_DIR=//" )
......
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