1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-06 23:46:30 +02:00

Render.py not only updates images that have changed.

Added force build to gallery.py.
This commit is contained in:
Chris Palmer
2019-06-09 17:23:30 +01:00
parent 5af2302053
commit 50d3570be4
6 changed files with 10 additions and 5 deletions

View File

@@ -29,12 +29,13 @@ from tests import do_cmd
import re
from shutil import copyfile
from tests import update_image
import sys
project_dir = '../..'
target_dir = 'gallery'
output_name = target_dir + '/readme.md'
def gallery():
def gallery(force):
if not os.path.isdir(target_dir):
os.makedirs(target_dir)
@@ -45,6 +46,8 @@ def gallery():
path = project_dir + '/' + project
print(project)
document = path + '/readme.md'
if force:
os.system('cd %s && make_all' % path)
if os.path.isfile(document):
with open(document, 'rt') as readme:
for line in readme.readlines():
@@ -74,4 +77,4 @@ def gallery():
if __name__ == '__main__':
init()
gallery()
gallery(force = len(sys.argv) > 1 and sys.argv[1] == '-f')