debian-mirror-gitlab/spec/support/prepare-gitlab-git-test-for-commit

19 lines
491 B
Plaintext
Raw Normal View History

2017-09-10 17:25:29 +05:30
#!/usr/bin/env ruby
2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
abort unless [
2018-10-15 14:42:47 +05:30
system('spec/support/generate-seed-repo-rb', out: 'spec/support/helpers/seed_repo.rb'),
2017-09-10 17:25:29 +05:30
system('spec/support/unpack-gitlab-git-test')
].all?
exit if ARGV.first != '--check-for-changes'
git_status = IO.popen(%w[git status --porcelain], &:read)
abort unless $?.success?
puts git_status
if git_status.lines.grep(%r{^.. spec/support/gitlab-git-test.git}).any?
abort "error: detected changes in gitlab-git-test.git"
end