30 lines
637 B
Bash
Executable file
30 lines
637 B
Bash
Executable file
#!/bin/sh
|
|
DIRECTORY=$(cd `dirname $0` && pwd)
|
|
|
|
## VARIABLES ###
|
|
LOG_DIR="$DIRECTORY"/logs
|
|
DATE=$(date +%d-%m-%y)
|
|
LOG_FILE="$LOG_DIR/${DATE}.log"
|
|
|
|
|
|
mkdir $LOG_DIR
|
|
touch $LOG_FILE
|
|
|
|
git pull --rebase 2>&1 >>$LOG_FILE
|
|
|
|
# 1. Update git directory
|
|
"${DIRECTORY}/update_git.sh" 2>&1 >>$LOG_FILE
|
|
|
|
# 2. Go through branches and generates builds
|
|
"${DIRECTORY}/build_branches.sh" 2>&1 >>$LOG_FILE
|
|
|
|
# 3. upload to ftp server
|
|
#"${DIRECTORY}/upload_ftp.sh" 2>&1 >>$LOG_FILE
|
|
|
|
# 3. upload to ftp server
|
|
"${DIRECTORY}/copyto_dir.sh" 2>&1 >>$LOG_FILE
|
|
|
|
# 4. Synchronize github with googlecode mercurial
|
|
"${DIRECTORY}/sync_git_google.sh" 2>&1 >>$LOG_FILE
|
|
|
|
|