Fix regexp for detected `db/schema.rb` and `ee/db/geo/schema.rb`

This commit is contained in:
Thong Kuah 2018-07-26 10:26:22 +12:00
parent 5035250337
commit 8f4745deb4
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ end
all_files = git.added_files + git.modified_files
non_geo_db_schema_updated = !git.modified_files.grep(%r{\Adb/schema\.rb/}).empty?
geo_db_schema_updated = !git.modified_files.grep(%r{\Aee/db/geo/schema\.rb/}).empty?
non_geo_db_schema_updated = !git.modified_files.grep(%r{\Adb/schema\.rb}).empty?
geo_db_schema_updated = !git.modified_files.grep(%r{\Aee/db/geo/schema\.rb}).empty?
non_geo_migration_created = !git.added_files.grep(%r{\A(db/(post_)?migrate)/}).empty?
geo_migration_created = !git.added_files.grep(%r{\Aee/db/geo/(post_)?migrate/}).empty?