Skip to content

Commit 3a9b4a3

Browse files
committed
Merge pull request #91 from Microsoft/remove-package-hash
Remove package hashes in "deployment list" command
2 parents e71874c + 91d4a35 commit 3a9b4a3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cli/script/command-executor.ts

-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,6 @@ function getPackageString(packageObject: Package): string {
672672
return chalk.green("Label: ") + packageObject.label + "\n" +
673673
chalk.green("App Version: ") + packageObject.appVersion + "\n" +
674674
chalk.green("Mandatory: ") + (packageObject.isMandatory ? "Yes" : "No") + "\n" +
675-
chalk.green("Hash: ") + packageObject.packageHash + "\n" +
676675
chalk.green("Release Time: ") + formatDate(packageObject.uploadTime) +
677676
(packageObject.description ? wordwrap(70)("\n" + chalk.green("Description: ") + packageObject.description): "");
678677
}

0 commit comments

Comments
 (0)