Skip to content

Commit

Permalink
PYTHON_VER=${PYTHON_VER:=3.8}
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Jul 8, 2024
1 parent 9193ce0 commit 03240f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/ci_build/github/linux/docker/scripts/install_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ set -e
while getopts p:d: parameter_Option
do case "${parameter_Option}"
in
p) PYTHON_VER=${OPTARG:=3.8};;
p) PYTHON_VER=${OPTARG};;
d) DEVICE_TYPE=${OPTARG};;
esac
done

PYTHON_VER=${PYTHON_VER:=3.8}
# Some Edge devices only have limited disk space, use this option to exclude some package
DEVICE_TYPE=${DEVICE_TYPE:=Normal}

Expand Down

0 comments on commit 03240f4

Please sign in to comment.