Skip to content

Commit 3ee80d7

Browse files
authored
Update build.yaml
1 parent b18b77d commit 3ee80d7

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,6 @@ jobs:
126126
with:
127127
python-version: '3.13'
128128

129-
- name: Create py.exe
130-
if: matrix.config.name == 'windows'
131-
shell: powershell
132-
run: |
133-
$pythonPath = (Get-Command python).Source
134-
$pyPath = Join-Path (Split-Path $pythonPath) "py.exe"
135-
Copy-Item $pythonPath $pyPath
136-
echo (Split-Path $pythonPath) | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
137-
138129
- name: Update submodule
139130
run: |
140131
cd binaryninjaapi
@@ -155,7 +146,7 @@ jobs:
155146
156147
# Find the built library
157148
if [[ "${{ matrix.config.ext }}" == "dll" ]]; then
158-
ORIGINAL=$(find . -name "*NativePredicateSolver.dll" -o -name "*NativePredicateSolver*.dll" | head -n 1)
149+
ORIGINAL=$(find . -name "NativePredicateSolver.dll" -o -name "NativePredicateSolver*.dll" | head -n 1)
159150
elif [[ "${{ matrix.config.ext }}" == "so" ]]; then
160151
ORIGINAL=$(find . -name "libNativePredicateSolver.so" -o -name "libNativePredicateSolver*.so" | head -n 1)
161152
else

0 commit comments

Comments
 (0)