diff options
author | Radostin Stoyanov <rstoyanov1@gmail.com> | 2017-06-16 11:08:14 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cbosdonnat@suse.com> | 2017-06-16 18:04:00 +0200 |
commit | 2eac1ead9c973b42cd5524e8defb0d766b2b306a (patch) | |
tree | 4720d51b10c6526650f020ee194ce145d9c642bb /src/virtBootstrap/virt-bootstrap.py | |
parent | 31e38232b7857bbf190a1234976e93f521fbffe0 (diff) | |
download | virt-bootstrap.git-2eac1ead9c973b42cd5524e8defb0d766b2b306a.tar.gz virt-bootstrap.git-2eac1ead9c973b42cd5524e8defb0d766b2b306a.tar.xz virt-bootstrap.git-2eac1ead9c973b42cd5524e8defb0d766b2b306a.zip |
Change shebang to use /usr/bin/env
When python is not /usr/bin/python but something else that is still
found by your system, /usr/bin/env still finds it.
:x
Reference:
https://mail.python.org/pipermail/python-list/2012-September/631967.html
Diffstat (limited to 'src/virtBootstrap/virt-bootstrap.py')
-rwxr-xr-x | src/virtBootstrap/virt-bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtBootstrap/virt-bootstrap.py b/src/virtBootstrap/virt-bootstrap.py index d5021c8..638b4d9 100755 --- a/src/virtBootstrap/virt-bootstrap.py +++ b/src/virtBootstrap/virt-bootstrap.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Authors: Cedric Bosdonnat <cbosdonnat@suse.com> # # Copyright (C) 2017 SUSE, Inc. |