Skip to content
Snippets Groups Projects
Commit 435ad912 authored by Nikolaus Krismer's avatar Nikolaus Krismer
Browse files

fixed problems on isochrone application install (when installed on

startup)
parent f2f6c766
No related branches found
No related tags found
No related merge requests found
......@@ -519,7 +519,7 @@ if $INSTALL_ISOCHRONE_RELEASE; then
echo "Installing template project \"isochrone (release)\""
# we do not save this file in download dir (we do not want caching for isochrone.war)
fn_download_newer $TOMCAT_WEBAPP_DIR/isochrone.war $NEXUS_RELEASE_ISOCHRONE
unzip -o -d $TOMCAT_WEBAPP_DIR/isochrone $TEMPLATE_DIR_ISOCHRONE/isochrone.war > install_isochrone_release.log 2>&1
unzip -o -d $TOMCAT_WEBAPP_DIR/isochrone $TOMCAT_WEBAPP_DIR/isochrone.war > install_isochrone_release.log 2>&1
rm -f $TOMCAT_WEBAPP_DIR/isochrone.war >> install_isochrone_release.log 2>&1
fi
......@@ -527,7 +527,7 @@ if $INSTALL_ISOCHRONE_SNAPSHOT; then
echo "Installing template project \"isochrone (testing)\""
# we do not save this file in download dir (we do not want caching for testing.war)
fn_download_newer $TOMCAT_WEBAPP_DIR/testing.war $NEXUS_SNAPSHOT_ISOCHRONE
unzip -o -d $TOMCAT_WEBAPP_DIR/testing $TEMPLATE_DIR_ISOCHRONE/testing.war > install_isochrone_snapshot.log 2>&1
unzip -o -d $TOMCAT_WEBAPP_DIR/testing $TOMCAT_WEBAPP_DIR/testing.war > install_isochrone_snapshot.log 2>&1
rm -f $TOMCAT_WEBAPP_DIR/testing.war >> install_isochrone_snapshot.log 2>&1
fi
......
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