From e7766926d9d0a4c2447f2b6c5893fb7a551c8923 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 9 Jul 2025 19:12:26 -0400 Subject: [PATCH] Make it easier to read --- bin/omarchy-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-update b/bin/omarchy-update index ed102f0..3c72f7f 100755 --- a/bin/omarchy-update +++ b/bin/omarchy-update @@ -19,7 +19,7 @@ for file in migrations/*.sh; do migrate_at="${filename%.sh}" if [ $migrate_at -gt $last_updated_at ]; then - echo "Running migration ($migrate_at)" + echo -e "\e[32m\nRunning migration ($migrate_at)\e[0m" source $file fi done