We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65105b2 commit 1dc04b6Copy full SHA for 1dc04b6
src/toolchain/swiftly.ts
@@ -803,6 +803,11 @@ export class Swiftly {
803
outputChannel.show(true);
804
outputChannel.appendLine(`Executing post-install script for Swift ${version}...`);
805
outputChannel.appendLine(`Script location: ${postInstallFilePath}`);
806
+ outputChannel.appendLine("Script contents:");
807
+ const scriptContents = await fs.readFile(postInstallFilePath, "utf-8");
808
+ for (const line of scriptContents.split(/\r?\n/)) {
809
+ outputChannel.appendLine(" " + line);
810
+ }
811
outputChannel.appendLine("");
812
813
await execFile("chmod", ["+x", postInstallFilePath]);
0 commit comments