STRUCT
Config.ShellScript
Contents
- Properties
scriptisErrorIgnoredshellPath
- Methods
init(_:isErrorIgnored:shellPath:)
swift
public struct ShellScript: Codable, EquatableProperties
script
swift
public let script: StringThe script to be executed with parameters.
isErrorIgnored
swift
public let isErrorIgnored: BoolAn error in the execution of the script will not interrupt the phase.
shellPath
swift
public let shellPath: String?The path to the shell which shall execute this script. Default is current shell.
Methods
init(_:isErrorIgnored:shellPath:)
swift
public init(
_ script: String,
isErrorIgnored: Bool,
shellPath: String?
)