change error message

This commit is contained in:
Yakov Olkhovskiy 2022-11-26 16:39:41 -05:00 committed by GitHub
parent ea58f05898
commit 796ef171a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
#!/bin/sh -e
if [ -f "clickhouse" ]; then
rm --interactive=never clickhouse || { echo "clickhouse already exists and I'm not able to remove it :("; exit 1; }
rm --interactive=never clickhouse || { echo "clickhouse already exists and I'm not able to remove it - probably I have no enough rights to do so. Please, remove it manually and repeat."; exit 1; }
fi
OS=$(uname -s)