Allow upgrading the products directory in report.py
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
import frontmatter
|
import frontmatter
|
||||||
|
import sys
|
||||||
import time
|
import time
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
|
||||||
products = {}
|
products = {}
|
||||||
count = 0
|
count = 0
|
||||||
count_auto = 0
|
count_auto = 0
|
||||||
for product_file in sorted(list(glob('website/products/*.md'))):
|
products_dir = sys.argv[1] if len(sys.argv) > 1 else 'website/products/'
|
||||||
|
for product_file in sorted(list(glob(f'{products_dir}/*.md'))):
|
||||||
with open(product_file, "r") as f:
|
with open(product_file, "r") as f:
|
||||||
data = frontmatter.load(f)
|
data = frontmatter.load(f)
|
||||||
count += 1
|
count += 1
|
||||||
|
|||||||
Reference in New Issue
Block a user