diskimage-builder/elements/dib-python/pre-install.d/01-dib-python

16 lines
297 B
Bash
Executable File

#!/bin/bash
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
python_path=$(command -v python2 || command -v python3)
if [ -z "$python_path" ]; then
echo "Could not find python2 or python3 executable."
exit 1
fi
ln -s $python_path /usr/local/bin/dib-python