Skip to content
Snippets Groups Projects
Commit 2c298473 authored by Robert Speicher's avatar Robert Speicher
Browse files

Perform unzip quietly in UpdatePagesService

parent 9f44687a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -93,10 +93,11 @@ module Projects
end
 
# Requires UnZip at least 6.00 Info-ZIP.
# -qq be (very) quiet
# -n never overwrite existing files
# We add * to end of SITE_PATH, because we want to extract SITE_PATH and all subdirectories
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'
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment