Skip to content

Commit

Permalink
Change output file name structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ASpoonPlaysGames committed Dec 22, 2023
1 parent 0a9db20 commit 7844dc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Advocate/Scripts/Conversion/Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public bool Convert(string outputPath, string repakPath, string texconvPath, str
Info("Moving zip to output folder...");

// move the zip file we created to the output folder
File.Move($"{tempFolderPath}/{AuthorName}.{SkinName}.zip", $"{outputPath}/{AuthorName}.{SkinName}-{Version}.zip", true);
File.Move($"{tempFolderPath}/{AuthorName}.{SkinName}.zip", $"{outputPath}/{AuthorName}-{AuthorName}_{SkinName}-{Version}.zip", true);

// move progress bar
ConvertTaskComplete();
Expand Down
2 changes: 1 addition & 1 deletion Advocate/Scripts/NoseArts/NoseArtCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public bool CreateNoseArt(string outputPath, string repakPath, string texconvPat
Info("Moving zip to output folder...");

// move the zip file we created to the output folder
File.Move($"{tempFolderPath}/{AuthorName}.{ModName}.zip", $"{outputPath}/{AuthorName}.{ModName}-{Version}.zip", true);
File.Move($"{tempFolderPath}/{AuthorName}.{ModName}.zip", $"{outputPath}/{AuthorName}-{AuthorName}_{ModName}-{Version}.zip", true);
}
catch (Exception ex) when (!nogui)
{
Expand Down

0 comments on commit 7844dc3

Please sign in to comment.