Skip to content

Commit

Permalink
Bump inkproof to master
Browse files Browse the repository at this point in the history
  • Loading branch information
JBenda committed Dec 13, 2023
1 parent 810261d commit 52cf7b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
shell: bash
working-directory: proofing/ink-proof
run: |
python3 proof.py --examples 'I...' inkcpp inklecate_v0.9.0 > run.out
python3 proof.py --examples 'I...' inklecate_v1.1.1 inkcpp_runtime > run.out
echo -e "| ${{ matrix.name }} | $(cat run.out) |" > ${{ matrix.artifact }}.txt
# Creates a "disabled" artifact if ink proofing is disabled
Expand Down
2 changes: 1 addition & 1 deletion proofing/inkcpp_runtime_driver
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import shutil

ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
PATH = os.path.join(ROOT, 'deps', 'inkcpp', 'inkcpp_cl')
ARGS = ["inkcpp_cl", "-p"] + sys.argv[1:]
ARGS = ["inkcpp_cl", "--ommit-choice-tags", "-p"] + sys.argv[1:]
os.execv(PATH, ARGS)
sleep(2)

0 comments on commit 52cf7b9

Please # to comment.