Skip to content

Commit

Permalink
update custom scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mmouly committed Jan 31, 2025
1 parent 2f8f786 commit ad284b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions decisioncenter/script/rundc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ]
then
if [ -s "$SCRIPT/customStart.sh" ]
then
$SCRIPT/customStart.sh
. $SCRIPT/customStart.sh
fi

$SCRIPT/download.sh
Expand Down Expand Up @@ -39,7 +39,7 @@ then

if [ -s "$SCRIPT/customEnd.sh" ]
then
$SCRIPT/customEnd.sh
. $SCRIPT/customEnd.sh
fi
touch /config/initialized
fi
Expand Down
4 changes: 2 additions & 2 deletions decisionserver/decisionrunner/script/rundr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ]
then
if [ -s "$SCRIPT/customStart.sh" ]
then
$SCRIPT/customStart.sh
. $SCRIPT/customStart.sh
fi

$SCRIPT/download.sh
Expand All @@ -32,7 +32,7 @@ then

if [ -s "$SCRIPT/customEnd.sh" ]
then
$SCRIPT/customEnd.sh
. $SCRIPT/customEnd.sh
fi
touch /config/initialized
fi
4 changes: 2 additions & 2 deletions decisionserver/decisionserverconsole/script/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ]
then
if [ -s "$SCRIPT/customStart.sh" ]
then
$SCRIPT/customStart.sh
. $SCRIPT/customStart.sh
fi

$SCRIPT/download.sh
Expand Down Expand Up @@ -34,7 +34,7 @@ then

if [ -s "$SCRIPT/customEnd.sh" ]
then
$SCRIPT/customEnd.sh
. $SCRIPT/customEnd.sh
fi
touch /config/initialized
fi
4 changes: 2 additions & 2 deletions decisionserver/decisionserverruntime/script/runds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ ! -f /config/initialized ]
then
if [ -s "$SCRIPT/customStart.sh" ]
then
. $SCRIPT/customStart.sh
. $SCRIPT/customStart.sh
fi

$SCRIPT/download.sh
Expand Down Expand Up @@ -34,7 +34,7 @@ then

if [ -s "$SCRIPT/customEnd.sh" ]
then
$SCRIPT/customEnd.sh
. $SCRIPT/customEnd.sh
fi
touch /config/initialized
fi

0 comments on commit ad284b7

Please sign in to comment.