diff options
author | David Robillard <d@drobilla.net> | 2022-03-14 17:32:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-03-14 17:32:47 -0400 |
commit | 2536d58d1119bd2304f5c16f1109e42314595f65 (patch) | |
tree | 537ec562107de5c1c17e67214fad6676850f7edd | |
parent | cf5cb3441c27102cdebe91d5be25384877758293 (diff) | |
download | pugl-2536d58d1119bd2304f5c16f1109e42314595f65.tar.gz pugl-2536d58d1119bd2304f5c16f1109e42314595f65.tar.bz2 pugl-2536d58d1119bd2304f5c16f1109e42314595f65.zip |
Fix build on systems without a "python" executable
This script is technically 2/3 compatible, but 3 is required to build anyway,
so whatever.
-rwxr-xr-x | scripts/cat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cat.py b/scripts/cat.py index 80326e0..ee4541b 100755 --- a/scripts/cat.py +++ b/scripts/cat.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright 2021 David Robillard <d@drobilla.net> # SPDX-License-Identifier: ISC |