Skip to content

Commit

Permalink
Remove # from the productName, if set (affects save path)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage committed Dec 10, 2024
1 parent 26fea93 commit 8e73b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Editor/BuildTiltBrush.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ public TempSetAppNames(BuildTarget target, string Description)
#endif
if (!String.IsNullOrEmpty(Description))
{
new_name += "-(" + Description + ")";
new_name += "-(" + Description.Replace("#", "") + ")";
new_identifier += "-" + Description.Replace("_", "").Replace("#", "").Replace("-", "");
}
if (m_IsAndroidOrIos)
Expand Down

0 comments on commit 8e73b80

Please sign in to comment.