Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1018 Bytes

File metadata and controls

22 lines (15 loc) · 1018 Bytes

subkt / myaa.subkt.tasks / org.gradle.api.Task / getRaw

getRaw

fun Task.getRaw(propertyName: String): String (source)

Searches for the given property in the Subs object's SubProperties instance, and returns the raw string. Raises an error if not found.

This function is run in a task context, using the entry and release values for this task.

// from task mux.03
// property file: TV.03.value=hello{1..3}|test|$episode
getRawMaybe("value")
// Output: hello{1..3}|test|$episode

Parameters

propertyName - The property to find.