Skip to content

Commit

Permalink
Adjusted minor wording
Browse files Browse the repository at this point in the history
  • Loading branch information
n7s committed Oct 31, 2024
1 parent b7824af commit 9d7f52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/smithlib/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,11 +997,11 @@ def execute(self) :
familynames = files.split("-")
fullfamilynames = familynames[0]
if os.path.exists(toppath + "/fontbakery.yaml"):
print("Running Font Bakery using the local fontbakery.yaml file as well as the pysilfont profile for " + fullfamilynames + "...")
print("Running Font Bakery using the local fontbakery.yaml file as well as the pysilfont profile on family: " + fullfamilynames + "...")
Utils.subprocess.Popen("fontbakery check-profile silfont.fbtests.profile " + outputpath + "/" + fullfamilynames + "-*.ttf" + " --config " + toppath + "/fontbakery.yaml" + " --html " + outputpath + "/fontbakery-report-" + fullfamilynames + ".html" + " -q --skip-network -S -F -C -j -l WARN -m WARN", shell = 1).wait()
print("Done, see the generated HTML report for all the details.")
else:
print("Running Font Bakery using the pysilfont profile for " + fullfamilynames + "...")
print("Running Font Bakery using the pysilfont profile on family: " + fullfamilynames + "...")
Utils.subprocess.Popen("fontbakery check-profile silfont.fbtests.profile " + outputpath + "/" + fullfamilynames + "-*.ttf" + " --html " + outputpath + "/fontbakery-report-" + fullfamilynames + ".html" + " -q --skip-network -S -F -C -j -l WARN -m WARN", shell = 1).wait()
print("Done, see the generated HTML report for all the details.")

Expand Down

0 comments on commit 9d7f52e

Please sign in to comment.