mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix build from previous commits
This commit is contained in:
@@ -13,11 +13,10 @@ namespace RombaSharp.Features
|
||||
public Merge()
|
||||
{
|
||||
Name = Value;
|
||||
Flags = ["merge"];
|
||||
Flags.AddRange(["merge"]);
|
||||
Description = "Merges depot";
|
||||
_featureType = ParameterType.Flag;
|
||||
LongDescription = "Merges specified depot into current depot.";
|
||||
Features = [];
|
||||
|
||||
// Common Features
|
||||
AddCommonFeatures();
|
||||
@@ -44,7 +43,9 @@ namespace RombaSharp.Features
|
||||
logger.Error("This feature is not yet implemented: merge");
|
||||
|
||||
// Verify that the inputs are valid directories
|
||||
Inputs = PathTool.GetDirectoriesOnly(Inputs).Select(p => p.CurrentPath).ToList();
|
||||
var dirs = PathTool.GetDirectoriesOnly(Inputs).Select(p => p.CurrentPath);
|
||||
Inputs.Clear();
|
||||
Inputs.AddRange(dirs);
|
||||
|
||||
// Loop over all input directories
|
||||
foreach (string input in Inputs)
|
||||
|
||||
Reference in New Issue
Block a user