Merge pull request #122 from umarcor/umarcor/confirm

build: skip confirm if non-interactive
This commit is contained in:
Rémi Verschelde
2023-05-24 16:13:37 +02:00
committed by GitHub

View File

@@ -29,17 +29,19 @@ img_version=$godot_branch-$base_distro
files_root="$(cd dirname "$0"; pwd)/files"
build_msvc=0
# Confirm settings
echo "Docker image tag: ${img_version}"
echo
while true; do
read -p "Is this correct? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit 1;;
* ) echo "Please answer yes or no.";;
esac
done
if [ ! -z "$PS1" ]; then
# Confirm settings
echo "Docker image tag: ${img_version}"
echo
while true; do
read -p "Is this correct? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit 1;;
* ) echo "Please answer yes or no.";;
esac
done
fi
mkdir -p logs