Minor add verbose option to maintainer_update

This commit is contained in:
Christian W. Zuckschwerdt 2020-10-22 17:04:51 +02:00
parent 3808dec7d4
commit aa0f30a62e

View file

@ -2,6 +2,7 @@
"""rtl_433 maintainer updates to build files and docs."""
import sys
import os
import subprocess
import glob
@ -71,7 +72,7 @@ def markup_man_text(help_text):
return help_text
verbose = False
verbose = '-v' in sys.argv
# Make sure we run from the top dir
topdir = os.path.dirname(os.path.abspath(__file__))