Skip to content

Commit

Permalink
Fix syntax error!
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeliux committed Aug 18, 2024
1 parent 342f99b commit 005628a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/Kryptor.Cli.Shared/Wordlist/CompileSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private void Cleanup(bool deleteInstallation)

Dependencies.OfType<DownloadSession>().ForEach(x => x.DeleteCache());

if (Directory.Exists(DestPath) && (deleteInstallation || Directory.GetFiles(DestPath).Length == 0)
if (Directory.Exists(DestPath) && (deleteInstallation || Directory.GetFiles(DestPath).Length == 0))
{
Directory.Delete(DestPath, true);
}
Expand Down

0 comments on commit 005628a

Please sign in to comment.