homebrewEditFormula top-level property

ConfigVariable<FutureOr<String> Function(String)> homebrewEditFormula
final

A user-defined function that modifies the formula after the automatic edits have been applied.

This can be used to handle application-specific changes, like updating secondary resource URLs. It runs after the URL, SHA, and version number have been updated.

Implementation

final homebrewEditFormula =
    InternalConfigVariable.value<FutureOr<String> Function(String)>(
        (formula) => formula);