remove progress bar

This commit is contained in:
Younes ENNAJI
2025-02-21 22:10:00 +01:00
parent dfdd28b869
commit 8fdc809118
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ main() {
local percent=$((current_count * 100 / total_count)) local percent=$((current_count * 100 / total_count))
echo -e "\nProgress: ${BOLD}$current_count/$total_count${RESET}" echo -e "\nProgress: ${BOLD}$current_count/$total_count${RESET}"
draw_progress_bar $percent # draw_progress_bar $percent
if release_repository "$repo" "$version"; then if release_repository "$repo" "$version"; then
if check_tag_exists "$repo" "$version"; then if check_tag_exists "$repo" "$version"; then
+1
View File
@@ -123,6 +123,7 @@ main() {
local percent=$((current_count * 100 / total_count)) local percent=$((current_count * 100 / total_count))
echo -e "\nProgress: ${BOLD}$current_count/$total_count${RESET}" echo -e "\nProgress: ${BOLD}$current_count/$total_count${RESET}"
# draw_progress_bar $percent
if process_split "$prefix"; then if process_split "$prefix"; then
((success_count++)) ((success_count++))