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:
authorLin Jen-Shin <godfat@godfat.org>2017-07-03 22:22:19 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-07-04 13:18:36 +0300
commit4d9c2bad369d510877dff719d94a5f98b1ee4dfe (patch)
treec9ae9423d847e6916b74ac8210c7534aedd24f05 /app/services/ci/create_pipeline_service.rb
parent8a0cd7dd1560c78fd1cd9fda363dc73bf8ee2010 (diff)
Fix config path
Diffstat (limited to 'app/services/ci/create_pipeline_service.rb')
-rw-r--r--app/services/ci/create_pipeline_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/ci/create_pipeline_service.rb b/app/services/ci/create_pipeline_service.rb
index 4f35255fb53..b95c26560ae 100644
--- a/app/services/ci/create_pipeline_service.rb
+++ b/app/services/ci/create_pipeline_service.rb
@@ -33,7 +33,7 @@ module Ci
unless pipeline.config_processor
unless pipeline.ci_yaml_file
- return error("Missing #{pipeline.ci_yaml_file_path} file")
+ return error("Missing #{project.ci_config_file_for_pipeline} file")
end
return error(pipeline.yaml_errors, save: save_on_errors)
end