Give users option of overwriting

This commit is contained in:
DanRoscigno 2023-02-25 11:05:18 -05:00
parent 37570f10ea
commit 4cc614ce7a

View File

@ -60,12 +60,21 @@ fi
clickhouse_download_filename_prefix="clickhouse"
clickhouse="$clickhouse_download_filename_prefix"
i=0
while [ -f "$clickhouse" ]
do
if [ -f "$clickhouse" ]
then
read -p "ClickHouse binary ${clickhouse} already exists. Overwrite? [y/N] " answer
if [ "$answer" = "y" -o "$answer" = "Y" ]
then
rm -f "$clickhouse"
else
i=0
while [ -f "$clickhouse" ]
do
clickhouse="${clickhouse_download_filename_prefix}.${i}"
i=$(($i+1))
done
done
fi
fi
URL="https://builds.clickhouse.com/master/${DIR}/clickhouse"
echo