Skip to content

Commit

Permalink
issue 56 - adding disable token replacement switch to the command line
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Jul 13, 2011
1 parent e3ebded commit b8ae313
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion product/roundhouse.console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,11 @@ private static void parse_arguments_and_set_up_configuration(ConfigurationProper
//force all anytime scripts
.Add("runallanytimescripts|forceanytimescripts",
"RunAllAnyTimeScripts - This instructs RH to run any time scripts every time it is run. Defaults to false.",
option => configuration.RunAllAnyTimeScripts = option != null)
option => configuration.RunAllAnyTimeScripts = option != null)
//disable token replacement
.Add("disabletokens|disabletokenreplacement",
"DisableTokenReplacement - This instructs RH to not perform token replacement {{somename}}. Defaults to false.",
option => configuration.DisableTokenReplacement = option != null)
//recorders
.Add("baseline",
"Baseline - This instructs RH to create an insert for its recording tables, but not to actually run anything against the database. Use this option if you already have scripts that have been run through other means (and BEFORE you start the new ones).",
Expand Down Expand Up @@ -293,6 +297,7 @@ private static void parse_arguments_and_set_up_configuration(ConfigurationProper
"/simple " +
"/debug " +
"/runallanytimescripts " +
"/disabletokenreplacement " +
"/baseline " +
"/dryrun " +
"]", Environment.NewLine);
Expand Down

0 comments on commit b8ae313

Please sign in to comment.