From 76a096d70e8b198e16f7004404089ce81fd8b6f7 Mon Sep 17 00:00:00 2001 From: Alexey Martemyanov Date: Tue, 10 Dec 2024 21:03:28 +0600 Subject: [PATCH] make Nothing start with a capital letter --- clean-app.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clean-app.sh b/clean-app.sh index 648fbf1565..47b624c160 100755 --- a/clean-app.sh +++ b/clean-app.sh @@ -14,7 +14,7 @@ delete_data() { rm -r "${data_path}" || { echo "Failed to delete ${data_path}"; exit 1; } echo " Done." else - printf '\nnothing to do for %s\n' "${data_path}" + printf '\nNothing to do for %s\n' "${data_path}" fi } @@ -63,7 +63,7 @@ for config_id in "${config_bundle_ids[@]}"; do rm -r "${path}" || { echo "Failed to delete ${path}"; exit 1; } echo "Done." else - printf '\nnothing to do for %s\n' "${path}" + printf '\nNothing to do for %s\n' "${path}" fi done