diff options
author | Shinya Maeda <shinya@gitlab.com> | 2018-01-26 02:21:31 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-02-06 15:50:08 +0900 |
commit | 002f314f320c5731681297225fff5b528de88ed2 (patch) | |
tree | bc897fd5d1daff9e7a12815151b1a929266db074 /app | |
parent | b9692501060b3543bd3289bd806920044516db8c (diff) | |
download | gitlab-ce-002f314f320c5731681297225fff5b528de88ed2.tar.gz |
Expose current_path
Diffstat (limited to 'app')
-rw-r--r-- | app/uploaders/job_artifact_uploader.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/uploaders/job_artifact_uploader.rb b/app/uploaders/job_artifact_uploader.rb index 841168438d8..4c814c6f501 100644 --- a/app/uploaders/job_artifact_uploader.rb +++ b/app/uploaders/job_artifact_uploader.rb @@ -14,9 +14,11 @@ class JobArtifactUploader < GitlabUploader end def open - raise 'Only File System is supported' unless file_storage? - - File.open(path) if path + if file_storage? + File.open(path, "rb") + else + raise 'Only File System is supported' + end end private |