023d4f6f2f
Signed-off-by: Rémy Coutable <remy@rymai.me>
17 lines
461 B
Ruby
Executable file
17 lines
461 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
abort unless [
|
|
system('spec/support/generate-seed-repo-rb', out: 'spec/support/helpers/seed_repo.rb'),
|
|
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
|