lib/roku_builder/loader.rb in roku_builder-3.3.2 vs lib/roku_builder/loader.rb in roku_builder-3.3.3

- old
+ new

@@ -8,11 +8,12 @@ # @param branch [String] Branch of the git repository to sideload. Pass nil to use working directory. Default: nil # @param update_manifest [Boolean] Flag to update the manifest file before sideloading. Default: false # @param fetch [Boolean] Flag to fetch all remotes before sideloading. Default: false # @param folders [Array<String>] Array of folders to be sideloaded. Pass nil to send all folders. Default: nil # @param files [Array<String>] Array of files to be sideloaded. Pass nil to send all files. Default: nil + # @param infile [String] # @return [String] Build version on success, nil otherwise - def sideload(root_dir:, branch: nil, update_manifest: false, fetch: false, folders: nil, files: nil) + def sideload(root_dir:, branch: nil, update_manifest: false, fetch: false, folders: nil, files: nil, infile: nil) @root_dir = root_dir result = nil stash = nil if branch git = Git.open(@root_dir)