Skip to content

Commit

Permalink
Minor fix. Fixed some issues with Git Bash on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
CormanDrex authored and Fabian committed Aug 14, 2016
1 parent 596ae86 commit 98a3f87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/extractor_binary/ExtractResources.sh
Expand Up @@ -153,7 +153,7 @@ echo | tee -a $DETAIL_LOG_FILE
if [ "$USE_AD" = "1" ]
then
echo "`date`: Start extraction of DBCs and map files..." | tee -a $LOG_FILE
ad | tee -a $DETAIL_LOG_FILE
./ad | tee -a $DETAIL_LOG_FILE
echo "`date`: Extracting of DBCs and map files finished" | tee -a $LOG_FILE
echo | tee -a $LOG_FILE
echo | tee -a $DETAIL_LOG_FILE
Expand All @@ -163,11 +163,11 @@ fi
if [ "$USE_VMAPS" = "1" ]
then
echo "`date`: Start extraction of vmaps..." | tee -a $LOG_FILE
vmapExtractor | tee -a $DETAIL_LOG_FILE
./vmapExtractor | tee -a $DETAIL_LOG_FILE
echo "`date`: Extracting of vmaps finished" | tee -a $LOG_FILE
mkdir vmaps
echo "`date`: Start assembling of vmaps..." | tee -a $LOG_FILE
vmap_assembler Buildings vmaps | tee -a $DETAIL_LOG_FILE
./vmap_assembler Buildings vmaps | tee -a $DETAIL_LOG_FILE
echo "`date`: Assembling of vmaps finished" | tee -a $LOG_FILE

echo | tee -a $LOG_FILE
Expand Down

0 comments on commit 98a3f87

Please sign in to comment.