Skip to content

Commit

Permalink
configure.py: Remove UTF-8 marker and change shebang to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Jul 2, 2024
1 parent 0d10fb3 commit 31f9752
Show file tree
Hide file tree
Showing 2 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 @@ -22,7 +22,7 @@ jobs:

- name: Run build script
run: |
python3 ./configure.py
python3 configure.py
make all
env:
COMMIT_FROM: ${{ github.event.before }}
Expand Down
4 changes: 2 additions & 2 deletions configure.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python -O
# -*- coding: utf-8 -*-
#!/usr/bin/env python3 -O

import os
from os import path
import sys
Expand Down

0 comments on commit 31f9752

Please sign in to comment.