Skip to content

Commit

Permalink
Added ConfigurationImporter to the package helper
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkendk committed May 21, 2024
1 parent afc34e0 commit 95b040d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Duplicati/Library/AutoUpdater/PackageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ public enum NamedExecutable
/// <summary>
/// The snapshot tool
/// </summary>
Snapshots
Snapshots,
/// <summary>
/// The configuration importer
/// </summary>
ConfigurationImporter

}

Expand All @@ -79,6 +83,7 @@ public static string GetExecutableName(NamedExecutable exe)
NamedExecutable.BackendTester => Platform.IsClientWindows ? "Duplicati.CommandLine.BackendTester.exe" : "duplicati-backend-tester",
NamedExecutable.SharpAESCrypt => Platform.IsClientWindows ? "Duplicati.CommandLine.SharpAESCrypt.exe" : "duplicati-aescrypt",
NamedExecutable.Snapshots => Platform.IsClientWindows ? "Duplicati.CommandLine.Snapshots.exe" : "duplicati-snapshots",
NamedExecutable.ConfigurationImporter => Platform.IsClientWindows ? "Duplicati.CommandLine.ConfigurationImporter.exe" : "duplicati-configuration-importer",
_ => throw new ArgumentException($"Named executable not known: {exe}", nameof(exe))
};

Expand Down

0 comments on commit 95b040d

Please sign in to comment.