[Bf-docboard-svn] bf-manual: [7188] trunk/blender_docs/make.bat: make.bat: Cleanup: no need to log output

Aaron Carlisle noreply at blender.org
Mon Oct 5 22:08:41 CEST 2020


Revision: 7188
          https://developer.blender.org/rBM7188
Author:   Blendify
Date:     2020-10-05 22:08:40 +0200 (Mon, 05 Oct 2020)
Log Message:
-----------
make.bat: Cleanup: no need to log output

Modified Paths:
--------------
    trunk/blender_docs/make.bat

Modified: trunk/blender_docs/make.bat
===================================================================
--- trunk/blender_docs/make.bat	2020-10-05 20:02:45 UTC (rev 7187)
+++ trunk/blender_docs/make.bat	2020-10-05 20:08:40 UTC (rev 7188)
@@ -116,9 +116,7 @@
 )
 
 if "%1" == "check_syntax" (
-	python tools/rst_check_syntax.py --kbd --long > rst_check_syntax.log
-	type rst_check_syntax.log
-	DEL rst_check_syntax.log
+	python tools_rst/rst_check_syntax.py --kbd --long
 	goto EOF
 )
 
@@ -129,20 +127,14 @@
 
 if "%1" == "report_po_progress" (
 	IF NOT EXIST %cd%/locale GOTO MISSING_LOCALE
-	python tools_report/report_translation_progress.py locale/%2 --quiet > po_progress.log
-	type po_progress.log
-	DEL po_progress.log
+	python tools_report/report_translation_progress.py locale/%2 --quiet
 	goto EOF
 
 )
 
 if "%1" == "check_structure" (
-	python tools_rst/rst_check_images.py > rst_check_structure.log
-	type rst_check_structure.log
-
-	python tools_rst/rst_check_locale.py > rst_check_structure.log
-	type rst_check_structure.log
-	DEL rst_check_structure.log
+	python tools_rst/rst_check_images.py
+	python tools_rst/rst_check_locale.py
 	goto EOF
 
 ) else (



More information about the Bf-docboard-svn mailing list