subkt / myaa.subkt.tasks / org.gradle.api.Task / 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|$episodepropertyName - The property to find.