Skip to content

Commit f1d953a

Browse files
author
Fredrik Ellertsen
committed
Fix shebang placement
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.
1 parent 671f8d2 commit f1d953a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto/extract_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
#!/usr/bin/env python3
12
# =========================================================================
23
# Unity - A Test Framework for C
34
# ThrowTheSwitch.org
45
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
56
# SPDX-License-Identifier: MIT
67
# =========================================================================
78

8-
#!/usr/bin/env python3
99
import re
1010
import sys
1111

0 commit comments

Comments
 (0)