Skip to content

Commit

Permalink
Correct message to "unpacked" rather than "packed" (#6)
Browse files Browse the repository at this point in the history
When unpacking a solution, the information message displayed in VS Code incorrectly displays the word "packed" rather than "unpacked".
  • Loading branch information
Chris-WP authored Jul 22, 2021
1 parent 7c60061 commit c8b549f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/SolutionUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class SolutionUtils {
if(Settings.useCrmSolutionPacker()) {
if (! await Utils.checkSolutionPackerTool()) { return; }
const cmd = await Utils.getSolutionPackerCommandLine(`/action:Extract /folder:"${solutionFolder}" /zipfile:"${solutionZip}" /nologo /allowDelete:Yes`);
await Utils.executeChildProcess(cmd, (message) => vscode.window.showInformationMessage(`Solution packed to: ${solutionZip}`), onError);
await Utils.executeChildProcess(cmd, (message) => vscode.window.showInformationMessage(`Solution unpacked to: ${solutionZip}`), onError);
} else {
const fs = require('fs');
const unzip = require('unzipper');
Expand Down Expand Up @@ -436,4 +436,4 @@ export class SolutionUtils {
return undefined;
}
}
}
}

0 comments on commit c8b549f

Please sign in to comment.