Skip to content

Commit

Permalink
Slaps a big ol' BETA label on ConcatenateIndexFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Jun 12, 2018
1 parent c3619d7 commit 82d3a8c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/AnalysisPrograms/ConcatenateIndexFiles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static class ConcatenateIndexFiles

[Command(
CommandName,
Description = "Concatenates multiple consecutive index.csv files.")]
Description = "[BETA] Concatenates multiple consecutive index.csv files.")]
public class Arguments : SubCommandBase
{
[Argument(
Expand Down Expand Up @@ -167,6 +167,12 @@ public static void Execute(Arguments arguments)
throw new NoDeveloperMethodException();
}

Log.Warn(@"
!
! THIS IS A BETA COMMAND.
! It generally works but only for very narrow scenarios. Your milage *will* vary.
!");

if (arguments.InputDataDirectory != null)
{
arguments.InputDataDirectories =
Expand Down

0 comments on commit 82d3a8c

Please sign in to comment.