summaryrefslogtreecommitdiff
path: root/lib/backup/artifacts.rb
blob: 6a45baa60ec8cdffe04be7eb11141608cb395ef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Backup
  class Artifacts < Backup::Files
    attr_reader :progress

    def initialize(progress)
      @progress = progress

      super('artifacts', JobArtifactUploader.root, excludes: ['tmp'])
    end
  end
end