fc862f460c
Change the shebang from /usr/bin/python to /usr/bin/env python Some users, especially on older systems don't use the python supplied with the OS. This has an impact with module loading if the python in /usr/bin is 2.6, and user wants to use 2.7 in /usr/local/bin, for example Change-Id: Ib31b369a94c33fb7508f0539c2b2f14177e507e0
22 lines
723 B
Python
Executable File
22 lines
723 B
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import sys
|
|
|
|
from diskimage_builder.element_dependencies import main
|
|
|
|
|
|
sys.exit(main(sys.argv))
|