src/relpipe-in-filesystem.cpp
branchv_0
changeset 53 170a993745be
parent 52 fea625f0a096
child 54 ef726975c34b
--- a/src/relpipe-in-filesystem.cpp	Mon Jan 20 12:39:22 2020 +0100
+++ b/src/relpipe-in-filesystem.cpp	Mon Jan 20 13:11:50 2020 +0100
@@ -29,7 +29,7 @@
 #include <relpipe/cli/CLI.h>
 #include <relpipe/cli/RelpipeCLIException.h>
 
-#include "FilesystemCommand.h"
+#include "PlainFilesystemCommand.h"
 #include "ParallelFilesystemCommand.h"
 #include "CLIParser.h"
 
@@ -48,7 +48,7 @@
 		CLIParser cliParser;
 		Configuration configuration = cliParser.parse(cli.arguments());
 		std::unique_ptr<FilesystemCommandBase> command;
-		if (configuration.parallelism == 1) command = std::make_unique<FilesystemCommand>();
+		if (configuration.parallelism == 1) command = std::make_unique<PlainFilesystemCommand>();
 		else command = std::make_unique<ParallelFilesystemCommand>();
 		command->process(cin, cout, configuration);
 		resultCode = CLI::EXIT_CODE_SUCCESS;