1
0
Fork 0

Remove build log

This commit is contained in:
Braiden Vasco 2017-07-02 11:56:54 +00:00
parent 2a6016b717
commit eb89de4899
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@ export SCRIPT_DIR="$BASE_DIR/scripts"
export FUNCTIONS_DIR="$BASE_DIR/functions"
export WORK_DIR="$BASE_DIR/work/$IMG_DATE-$IMG_NAME"
export DEPLOY_DIR="$BASE_DIR/deploy"
export LOG_FILE="$WORK_DIR/build.log"
export CLEAN
export IMG_NAME

View File

@ -1,6 +1,6 @@
log() {
tput setaf 2 # Green color
date +"[%T] $@" | tee -a "$LOG_FILE"
date +"[%T] $@"
tput sgr0 # No color
}