Skip to content

Commit

Permalink
Fixed failure removing backup file.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed May 21, 2024
1 parent 984236f commit b729db3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions chibild/chibild.core/CilLinker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ injectToAssemblyPath is { } injectPath ?
if (File.Exists(outputAssemblyCandidateFullPath))
{
backupFilePath = outputAssemblyCandidateFullPath + ".bak";
File.Delete(backupFilePath);
File.Move(outputAssemblyCandidateFullPath, backupFilePath);
}

Expand Down

0 comments on commit b729db3

Please sign in to comment.