Skip to content

Commit

Permalink
Updated the CompileFromTemplate() private method of the FrmInstaller …
Browse files Browse the repository at this point in the history
…class to not use the full path.
  • Loading branch information
xvitaly committed Nov 29, 2024
1 parent 9045dd2 commit fa681c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/srcrepair/FrmInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private void CompileFromTemplate(string FileName)
{
using (StreamWriter CFile = new StreamWriter(FileName))
{
CFile.WriteLine(Properties.Resources.TemplateVMTSpray.Replace("{D}", Path.Combine("vgui", "logos", Path.GetFileNameWithoutExtension(FileName))));
CFile.WriteLine(Properties.Resources.TemplateVMTSpray.Replace("{D}", Path.GetFileNameWithoutExtension(FileName)));
}
}
catch (Exception Ex)
Expand Down

0 comments on commit fa681c9

Please sign in to comment.