From f163297a497b2151b01432b435ac1c5870c63219 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 28 Jun 2025 11:39:45 -0700 Subject: [PATCH] Change output --- bin/omarchy-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-update b/bin/omarchy-update index a5ae380..da517c8 100755 --- a/bin/omarchy-update +++ b/bin/omarchy-update @@ -14,7 +14,7 @@ for file in migrations/*.sh; do migrate_at="${filename%.sh}" if [ $migrate_at -gt $last_updated_at ]; then - echo "Running migration for $migrate_at" + echo "Running migration ($migrate_at)" source $file fi done