From 28ca70d81a03b330ff965a0ef58f206ebce9862b Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Tue, 20 Jul 2021 17:14:05 +0200 Subject: [PATCH] Fix passing of the python binary to the bootstrap script --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 769b92ca26..64a96ebbd2 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -39,7 +39,7 @@ usage() } -while getopts "hP-:" opt; do +while getopts "hP:-:" opt; do case $opt in "P") python=$OPTARG ;; "h") usage && exit 0 ;;