File indexing completed on 2025-01-05 04:00:16

0001 #!/bin/bash
0002 
0003 # SPDX-FileCopyrightText: 2008-2024 by Gilles Caulier, <caulier dot gilles at gmail dot com>
0004 #
0005 # SPDX-License-Identifier: BSD-3-Clause
0006 #
0007 
0008 while true;
0009 do
0010     DATE=`date +%H%M`
0011 
0012     if [[ $DATE == "1500" ]] ; then
0013 
0014         echo "Windows bundle started at $(date)"
0015         cd /mnt/data/7.x/project/bundles/mxe
0016         git pull
0017         ./update.sh
0018         echo "Windows bundle completed at $(date)"
0019 
0020     fi
0021 
0022     sleep 20s
0023 
0024 done