<div dir="ltr"><div>Hi, I&#39;m JPMartha.</div><div><br></div><div>Can I ask about the following implementation?</div><div>  - <a href="https://github.com/apple/swift-package-manager/blob/master/Sources/Build/YAML.swift#L31-L40">https://github.com/apple/swift-package-manager/blob/master/Sources/Build/YAML.swift#L31-L40</a></div><div><br></div><div>The reason why I ask about that I can&#39;t build the SwiftPM itself with the bootstrap script these days.</div><div>  - <a href="https://github.com/apple/swift-package-manager#development">https://github.com/apple/swift-package-manager#development</a> (2)</div><div><br></div><div>When I try to build itself, the following error occurs.</div><div><br></div><div>## Error</div><div>```</div><div>/swift-package-manager/.build/debug.yaml:7:1: error: unexpected trailing top-level section</div><div>default: main</div><div>^</div><div>&lt;unknown&gt;:0: error: unable to load build file</div><div>error: exit(1): /Users/.../swift-package-manager/.build/debug/swift-build-tool -f /Users/.../swift-package-manager/.build/debug.yaml</div><div>```</div><div><br></div><div>## Environment</div><div>  - swift-DEVELOPMENT-SNAPSHOT-2016-04-12</div><div>  - OS X 10.11.4</div><div><br></div><div>I thought I had made a mistake, so I was checking the SwiftPM in my repository.</div><div><br></div><div>But, I have concern about the current implementation.</div><div>  - <a href="https://github.com/apple/swift-package-manager/blob/master/Sources/Build/YAML.swift#L33-L34">https://github.com/apple/swift-package-manager/blob/master/Sources/Build/YAML.swift#L33-L34</a></div><div><br></div><div>Please see my debug.yaml.</div><div><br></div><div>```</div><div>targets:</div><div>  test: [&lt;Build.testsuite.module&gt;, &lt;Functional.testsuite.module&gt;, &lt;Get.testsuite.module&gt;, &lt;ManifestParser.testsuite.module&gt;, &lt;OptionsParser.testsuite.module&gt;, &lt;PackageDescription.testsuite.module&gt;, &lt;PackageType.testsuite.module&gt;, &lt;Transmute.testsuite.module&gt;, &lt;Utility.testsuite.module&gt;, &lt;Xcodeproj.testsuite.module&gt;, &lt;SwiftPM.test&gt;]</div><div>  main: [&lt;Build.module&gt;, &lt;Get.module&gt;, &lt;libc.module&gt;, &lt;ManifestParser.module&gt;, &lt;Multitool.module&gt;, &lt;OptionsParser.module&gt;, &lt;PackageDescription.module&gt;, &lt;PackageType.module&gt;, &lt;POSIX.module&gt;, &quot;&lt;swift-build.module&gt;&quot;, &quot;&lt;swift-test.module&gt;&quot;, &lt;Transmute.module&gt;, &lt;Utility.module&gt;, &lt;Xcodeproj.module&gt;, &quot;&lt;swift-build.exe&gt;&quot;, &quot;&lt;swift-test.exe&gt;&quot;, &lt;PackageDescription.dylib&gt;]</div><div>```</div><div><br></div><div>I guess the following changes are occurred by executing the &quot;quote&quot; method.</div><div><br></div><div>## Before the change:</div><div>&lt;swift-build.module&gt;, &lt;swift-test.module&gt;, &lt;swift-build.exe&gt;, &lt;swift-test.exe&gt;</div><div><br></div><div>## After the change:</div><div>&quot;&lt;swift-build.module&gt;&quot;, &quot;&lt;swift-test.module&gt;&quot;, &quot;&lt;swift-build.exe&gt;&quot;, &quot;&lt;swift-test.exe&gt;&quot;</div><div><br></div><div>But, I cannot confirm that because I cannot run the bootstrap script.</div><div><br></div><div>I&#39;m really sorry if I got the wrong idea.</div><div><br></div><div>Best regards,</div><div>JPMartha</div></div>