Skip to content

Commit 9960170

Browse files
authored
Merge pull request #447 from Hopium21/main
Minor Code Comment & Cleanup
2 parents ae71ce8 + 9353155 commit 9960170

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample/Assets/Editor/iOSPostBuildProcessor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProj
2727
private static bool IsCommandLineBuild()
2828
{
2929
string[] args = System.Environment.GetCommandLineArgs();
30-
return args.Contains("--ciBuild"); // Check for the --ciBuild flag
30+
return args.Contains("--ciBuild"); // Checks for the --ciBuild flag
3131
}
3232

3333
private static void ModifyInfoPlist(string pathToBuiltProject)
@@ -84,4 +84,4 @@ private static string GetBundleIdentifierFromArgs()
8484
}
8585
}
8686

87-
#endif
87+
#endif

0 commit comments

Comments
 (0)