Skip to content

Commit

Permalink
Fix python workflow (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
4z0t authored Nov 11, 2024
1 parent 5287c3e commit dc0bf00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# This is the practical test - if it patches, then we're good
- name: Patch base executable
run: |
echo "#define gitsha \"${{ github.sha }}\"" > workflow.cpp
echo '#define gitsha "${{ github.sha }}"' > workflow.cpp
mkdir build
python ./fa-python-binary-patcher/main.py "$(pwd)" clang++ ld g++
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ jobs:
# This is the practical test - if it patches, then we're good
- name: Patch base executable
run: |
echo "#define gitsha \"${{ github.sha }}\"" > workflow.cpp
echo '#define gitsha "${{ github.sha }}"' > workflow.cpp
mkdir build
python ./fa-python-binary-patcher/main.py "$(pwd)" clang++ ld g++

0 comments on commit dc0bf00

Please sign in to comment.