Skip to content

Commit 47c0208

Browse files
hyperpolymathclaude
andcommitted
fix(ci): update hypatia binary detection in hypatia-scan workflow
Check for both 'hypatia' and 'hypatia-v2' binary names; remove the mv step that renamed the binary post-build (binary now built as 'hypatia' directly). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ee88836 commit 47c0208

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ jobs:
3939
- name: Build Hypatia scanner (if needed)
4040
working-directory: ${{ env.HOME }}/hypatia
4141
run: |
42-
if [ ! -f hypatia-v2 ]; then
42+
if [ ! -f hypatia ] && [ ! -f hypatia-v2 ]; then
4343
echo "Building hypatia-v2 scanner..."
4444
mix deps.get
4545
mix escript.build
46-
mv hypatia hypatia-v2
4746
fi
4847
4948
- name: Run Hypatia scan

0 commit comments

Comments
 (0)