cb15e7ef33
If we are being run from a python 3 virtualenv where python2 is also available on the host we will use the hosts' python2 over the virtualenv python3 (even if the virtualenv is higher precedence in PATH). Change-Id: I9a25b9e45845a4121aab8250fd53c6f006825742
13 lines
423 B
Bash
Executable File
13 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Search for python first in case we are in a venv with python3 which
|
|
# should take precedence
|
|
python_path=$(command -v python || command -v python2 || command -v python3)
|
|
|
|
sudo -E $python_path $(dirname $0)/../bin/package-installs-squash --elements="$IMAGE_ELEMENT" --path=$ELEMENTS_PATH $TMP_MOUNT_PATH/tmp/package-installs.json
|