Fix exporter creating empty archives
This commit is contained in:
parent
cb61db02eb
commit
5b29c78496
|
@ -133,7 +133,7 @@ class Exporter
|
|||
end
|
||||
|
||||
def publish
|
||||
`tar czvf #{Rails.root.join "public", "export", "#{@export_filename}.tar.gz"} -C /tmp/rs_export #{@export_dirname}`
|
||||
`tar czvf #{Rails.root.join "public", "export", "#{@export_filename}.tar.gz"} #{@export_dirname}`
|
||||
url = "#{APP_CONFIG['https'] ? 'https' : 'http'}://#{APP_CONFIG['hostname']}/export/#{@export_filename}.tar.gz"
|
||||
@user.export_processing = false
|
||||
@user.export_url = url
|
||||
|
|
Loading…
Reference in New Issue