mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
13 lines
224 B
Ruby
Executable File
13 lines
224 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# frozen_string_literal: true
|
|
|
|
require_relative './database/migration_timestamp_checker'
|
|
|
|
result = MigrationTimestampChecker.new.check
|
|
|
|
if result
|
|
puts result.error_message
|
|
exit result.error_code
|
|
end
|