From a8aa65b889e94d9a00750818f6fcf5f79f8741da Mon Sep 17 00:00:00 2001 From: lucio Date: Tue, 5 Mar 2024 15:18:41 +0100 Subject: [PATCH] removed exec folder --- exec/startContainer.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 exec/startContainer.sh diff --git a/exec/startContainer.sh b/exec/startContainer.sh deleted file mode 100644 index 318fc04..0000000 --- a/exec/startContainer.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -logs=/etc/logback.xml -container=/etc/container.ini -if [ -f "$logs" ]; then - cp $logs /tomcat/lib -fi - -if [ -f "$container" ]; then - cp $container /smartgears-distribution -fi - -exec "$@" - -