diff options
| author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-15 18:07:52 +0000 |
|---|---|---|
| committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-15 18:07:52 +0000 |
| commit | 31a340adabe75f8b02cca462ab8aa857ff62f772 (patch) | |
| tree | 5540138a26430ec1ad33e0b76ff44f031729d945 /lib/api/job_artifacts.rb | |
| parent | 8bd8f7d169c6ab97cdd6b0bb74e898258a6ba1f1 (diff) | |
| download | gitlab-ce-31a340adabe75f8b02cca462ab8aa857ff62f772.tar.gz | |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/api/job_artifacts.rb')
| -rw-r--r-- | lib/api/job_artifacts.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/job_artifacts.rb b/lib/api/job_artifacts.rb index 920938ad453..6a82256cc96 100644 --- a/lib/api/job_artifacts.rb +++ b/lib/api/job_artifacts.rb @@ -54,7 +54,7 @@ module API bad_request! unless path.valid? - send_artifacts_entry(build, path) + send_artifacts_entry(build.artifacts_file, path) end desc 'Download the artifacts archive from a job' do @@ -90,7 +90,7 @@ module API bad_request! unless path.valid? - send_artifacts_entry(build, path) + send_artifacts_entry(build.artifacts_file, path) end desc 'Keep the artifacts to prevent them from being deleted' do |
