Skip to content

Commit

Permalink
Fix shebang placement
Browse files Browse the repository at this point in the history
671f8d2 introduced a license header to auto/extract_version.py before the
shebang, causing builds to fail like this:
  ../subprojects/unity/meson.build:7:0: ERROR: Failed running '/path/to/extract_version.py', binary or interpreter not executable.
  • Loading branch information
Fredrik Ellertsen committed Mar 20, 2024
1 parent 671f8d2 commit f1d953a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto/extract_version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python3
# =========================================================================
# Unity - A Test Framework for C
# ThrowTheSwitch.org
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
# SPDX-License-Identifier: MIT
# =========================================================================

#!/usr/bin/env python3
import re
import sys

Expand Down

0 comments on commit f1d953a

Please sign in to comment.