File tree 2 files changed +5
-5
lines changed
root-files/opt/flownative
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
while true ; do
4
4
currentMinute=$( date +" %M" )
5
- if [ " ${currentMinute} " == " 15" ] && [[ -f " /application /beach-cron-hourly.sh" ]]; then
6
- mkdir -p /application /Data/Logs/
7
- chmod 775 /application /beach-cron-hourly.sh
8
- /application/ beach-cron-hourly.sh >> /application /Data/Logs/BeachCron.log 2>&1
5
+ if [ " ${currentMinute} " == " 15" ] && [[ -f " ${BEACH_APPLICATION_PATH} /beach-cron-hourly.sh" ]]; then
6
+ mkdir -p ${BEACH_APPLICATION_PATH} /Data/Logs/
7
+ chmod 775 ${BEACH_APPLICATION_PATH} /beach-cron-hourly.sh
8
+ ${BEACH_APPLICATION_PATH} beach-cron-hourly.sh >> ${BEACH_APPLICATION_PATH} /Data/Logs/BeachCron.log 2>&1
9
9
sleep 10
10
10
fi
11
11
sleep 55
Original file line number Diff line number Diff line change @@ -363,5 +363,5 @@ beach_finalize_flow() {
363
363
fi
364
364
365
365
debug " Beach: Writing .warmupdone flag"
366
- touch /application /.warmupdone
366
+ touch ${BEACH_APPLICATION_PATH} /.warmupdone
367
367
}
You can’t perform that action at this time.
0 commit comments