summaryrefslogtreecommitdiff
path: root/app/uploaders
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-11-09 12:49:47 +0100
committerKamil Trzcinski <ayufan@ayufan.eu>2015-11-10 12:51:51 +0100
commit445cdb7579792d0d76c2562b971583bd7d05429b (patch)
tree36b7f79a5dbb6479c2d0f15d508affde6c25ed44 /app/uploaders
parent97f58bae87dfcfb36d5a7a490b1c0983435a19f4 (diff)
downloadgitlab-ce-445cdb7579792d0d76c2562b971583bd7d05429b.tar.gz
Move tmp artifacts to shared/artifacts/tmp/. Check for GitLab-Workhorse now
Diffstat (limited to 'app/uploaders')
-rw-r--r--app/uploaders/artifact_uploader.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/uploaders/artifact_uploader.rb b/app/uploaders/artifact_uploader.rb
index 848e0bcbde1..b4e0fc5772d 100644
--- a/app/uploaders/artifact_uploader.rb
+++ b/app/uploaders/artifact_uploader.rb
@@ -9,11 +9,11 @@ class ArtifactUploader < CarrierWave::Uploader::Base
end
def self.artifacts_upload_path
- File.expand_path('shared/tmp/artifacts-uploads/', Rails.root)
+ File.expand_path('shared/artifacts/tmp/uploads/', Rails.root)
end
def self.artifacts_cache_path
- File.expand_path('shared/tmp/artifacts-cache/', Rails.root)
+ File.expand_path('shared/artifacts/tmp/cache/', Rails.root)
end
def initialize(build, field)