We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e71874c + 91d4a35 commit 3a9b4a3Copy full SHA for 3a9b4a3
cli/script/command-executor.ts
@@ -672,7 +672,6 @@ function getPackageString(packageObject: Package): string {
672
return chalk.green("Label: ") + packageObject.label + "\n" +
673
chalk.green("App Version: ") + packageObject.appVersion + "\n" +
674
chalk.green("Mandatory: ") + (packageObject.isMandatory ? "Yes" : "No") + "\n" +
675
- chalk.green("Hash: ") + packageObject.packageHash + "\n" +
676
chalk.green("Release Time: ") + formatDate(packageObject.uploadTime) +
677
(packageObject.description ? wordwrap(70)("\n" + chalk.green("Description: ") + packageObject.description): "");
678
}
0 commit comments