Merge branch 'rs-silence-update-pages-service' into 'master'
Perform unzip quietly in UpdatePagesService Closes gitlab-ee#225 See merge request !12539
This commit is contained in:
commit
02299efa4f
1 changed files with 2 additions and 1 deletions
|
@ -93,10 +93,11 @@ module Projects
|
||||||
end
|
end
|
||||||
|
|
||||||
# Requires UnZip at least 6.00 Info-ZIP.
|
# Requires UnZip at least 6.00 Info-ZIP.
|
||||||
|
# -qq be (very) quiet
|
||||||
# -n never overwrite existing files
|
# -n never overwrite existing files
|
||||||
# We add * to end of SITE_PATH, because we want to extract SITE_PATH and all subdirectories
|
# We add * to end of SITE_PATH, because we want to extract SITE_PATH and all subdirectories
|
||||||
site_path = File.join(SITE_PATH, '*')
|
site_path = File.join(SITE_PATH, '*')
|
||||||
unless system(*%W(unzip -n #{artifacts} #{site_path} -d #{temp_path}))
|
unless system(*%W(unzip -qq -n #{artifacts} #{site_path} -d #{temp_path}))
|
||||||
raise 'pages failed to extract'
|
raise 'pages failed to extract'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue