Skip to content

Commit

Permalink
Fixed broken before/after logic
Browse files Browse the repository at this point in the history
  • Loading branch information
n7s committed Feb 4, 2025
1 parent 7ee8cd8 commit cf356b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smithlib/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ def execute(self) :
print("Stopping, no reference font files to diff against. Please add the font files from your last release to the {} folder.".format(refpath))
else:
# need to find a way to get new wordlists from tests/ as param using testpath
Utils.subprocess.Popen("diffenator2 diff --fonts-before " + outputpath + "/*.ttf " + "--fonts-after " + refpath + "/*.ttf " + "--out " + outputpath + "/diffenator2/", shell = 1).wait()
Utils.subprocess.Popen("diffenator2 diff --fonts-before " + refpath + "/*.ttf " + "--fonts-after " + outputpath + "/*.ttf " + "--out " + outputpath + "/diffenator2/", shell = 1).wait()
Utils.subprocess.Popen("rm -fv build.ninja .ninja_log", shell = 1).wait()

class graideContext(Build.BuildContext) :
Expand Down

0 comments on commit cf356b3

Please sign in to comment.