Skip to content

STRUCT

Profile.RunScript

Contents

swift
public struct RunScript: Codable, Hashable, CustomStringConvertible

A cache profile scripts

Properties

name

swift
public let name: String

The unique name of script

envKeys

swift
public let envKeys: [String]

The environment variables keys necessary to execute the script. They will be resolved relative to the project settings

description

swift
public var description: String

Methods

init(name:envKeys:)

swift
public init(
    name: String,
    envKeys: [String]
)

script(name:envKeys:)

swift
public static func script(
    name: String,
    envKeys: [String]
) -> RunScript