diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2017-07-21 12:04:30 +0100 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2017-07-24 21:40:29 +0100 |
commit | 6b94e7721e12cf5d99722278adf2ba9c0bbde995 (patch) | |
tree | 30b25012890642899746945d01fa375bd3698fc3 /scripts/coverageServer.py | |
parent | 61033f73fe70ae67d1293fc85f2668aff59d04e0 (diff) | |
download | klee-6b94e7721e12cf5d99722278adf2ba9c0bbde995.tar.gz |
more portable shebangs
This is useful on systems like NixOS, where python3 is not in /usr/bin/python3 as well as for people using alternative ways to install python such as virtualenv/pyenv. Some scripts where already using '/usr/bin/env'. With this pull request it gets more consistent. For background information see also: https://github.com/systemd/systemd/pull/5816
Diffstat (limited to 'scripts/coverageServer.py')
-rwxr-xr-x[-rw-r--r--] | scripts/coverageServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/coverageServer.py b/scripts/coverageServer.py index 841b8e5e..9be8c26d 100644..100755 --- a/scripts/coverageServer.py +++ b/scripts/coverageServer.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # ===-- coverageServer.py -------------------------------------------------===## # |