]> Cypherpunks repositories - gostls13.git/commitdiff
misc/ios: fix plist indentation and whitespace
authorBurcu Dogan <jbd@google.com>
Sun, 3 May 2015 07:13:46 +0000 (00:13 -0700)
committerBurcu Dogan <jbd@google.com>
Tue, 5 May 2015 21:04:05 +0000 (21:04 +0000)
Change-Id: Ida727edb592e77918ca5511b41456786d57c97b2
Reviewed-on: https://go-review.googlesource.com/9634
Reviewed-by: David Crawshaw <crawshaw@golang.org>
misc/ios/go_darwin_arm_exec.go

index f4baa13cca2265275540995e1d7606af9cc33294..402de3a5744353b93021af8a51f1b22e6fabc936 100644 (file)
@@ -626,25 +626,31 @@ func entitlementsPlist() string {
        <key>com.apple.developer.team-identifier</key>
        <string>` + teamID + `</string>
 </dict>
-</plist>`
+</plist>
+`
 }
 
 const resourceRules = `<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 <plist version="1.0">
 <dict>
-        <key>rules</key>
-        <dict>
-                <key>.*</key><true/>
-               <key>Info.plist</key> 
+       <key>rules</key>
+       <dict>
+               <key>.*</key>
+               <true/>
+               <key>Info.plist</key>
                <dict>
-                       <key>omit</key> <true/>
-                       <key>weight</key> <real>10</real>
+                       <key>omit</key>
+                       <true/>
+                       <key>weight</key>
+                       <integer>10</integer>
                </dict>
                <key>ResourceRules.plist</key>
                <dict>
-                       <key>omit</key> <true/>
-                       <key>weight</key> <real>100</real>
+                       <key>omit</key>
+                       <true/>
+                       <key>weight</key>
+                       <integer>100</integer>
                </dict>
        </dict>
 </dict>