Token Replacements
From the CLI
tokenReplace path=/tests/*.cfc token="@@version@@" replacement=`package version`From CFML
command( 'tokenReplace' )
.params(
path = "/tests/*.cfc",
token = "@@version@@",
replacement = command( 'package version' ).run()
)
.run();Last updated
Was this helpful?