File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed
Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments