From 0176bba7c3ca71527c3fb694d0585077f72e39b3 Mon Sep 17 00:00:00 2001 From: Vitomir Budimir Date: Mon, 8 Jul 2024 18:58:38 +0200 Subject: [PATCH 1/2] fix(db-migrations): always run touch_file.sh with bash --- packages/db-migrations/scripts/touch_file.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/db-migrations/scripts/touch_file.sh b/packages/db-migrations/scripts/touch_file.sh index 2e2ecae21..41344217e 100755 --- a/packages/db-migrations/scripts/touch_file.sh +++ b/packages/db-migrations/scripts/touch_file.sh @@ -1,3 +1,6 @@ +#!/bin/bash +# TODO: Commit with an explanation + echo "Enter the name of the migration (no spaces and with hifens)" read MIGRATION_NAME From b17c70fae872fd5e3ef2651ec95a1d5c2a0cfc76 Mon Sep 17 00:00:00 2001 From: Vitomir Budimir Date: Mon, 8 Jul 2024 18:59:37 +0200 Subject: [PATCH 2/2] chore(db-migrations): remove TODO --- packages/db-migrations/scripts/touch_file.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/db-migrations/scripts/touch_file.sh b/packages/db-migrations/scripts/touch_file.sh index 41344217e..7917cf749 100755 --- a/packages/db-migrations/scripts/touch_file.sh +++ b/packages/db-migrations/scripts/touch_file.sh @@ -1,5 +1,4 @@ #!/bin/bash -# TODO: Commit with an explanation echo "Enter the name of the migration (no spaces and with hifens)"