Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 00:09:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 00:09:57 +0300
commitb8fcc8edb4a289ef3ef4fee0ed8fd88e853a2396 (patch)
tree31658d7760d36aa3b368e020e08f4d21c678f2e3 /spec/support/prepare-gitlab-git-test-for-commit
parentd83bbccfcd07ddab93be73959e3b149b75831e28 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/prepare-gitlab-git-test-for-commit')
-rwxr-xr-xspec/support/prepare-gitlab-git-test-for-commit18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/support/prepare-gitlab-git-test-for-commit b/spec/support/prepare-gitlab-git-test-for-commit
deleted file mode 100755
index 77c7f309312..00000000000
--- a/spec/support/prepare-gitlab-git-test-for-commit
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env ruby
-# frozen_string_literal: true
-
-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