Skip to content

Commit a1ba64a

Browse files
committed
style(ios): condense podfile string assignment
1 parent ae5bd1f commit a1ba64a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

com.onesignal.unity.ios/Editor/BuildPostProcessor.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,7 @@ private void ExtensionAddPodsToTarget()
336336
// "Multiple commands produce" error. Dropping the declared input/output paths
337337
// makes the copy phases run unconditionally and resolves the conflict.
338338
if (!podfile.Contains("disable_input_output_paths"))
339-
podfile =
340-
"install! 'cocoapods', :disable_input_output_paths => true\n" + podfile;
339+
podfile = "install! 'cocoapods', :disable_input_output_paths => true\n" + podfile;
341340

342341
File.WriteAllText(podfilePath, podfile);
343342
}

0 commit comments

Comments
 (0)