Skip to content

Commit

Permalink
Merge pull request #91 from Microsoft/remove-package-hash
Browse files Browse the repository at this point in the history
Remove package hashes in "deployment list" command
  • Loading branch information
geof90 committed Dec 29, 2015
2 parents e71874c + 91d4a35 commit 3a9b4a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cli/script/command-executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,6 @@ function getPackageString(packageObject: Package): string {
return chalk.green("Label: ") + packageObject.label + "\n" +
chalk.green("App Version: ") + packageObject.appVersion + "\n" +
chalk.green("Mandatory: ") + (packageObject.isMandatory ? "Yes" : "No") + "\n" +
chalk.green("Hash: ") + packageObject.packageHash + "\n" +
chalk.green("Release Time: ") + formatDate(packageObject.uploadTime) +
(packageObject.description ? wordwrap(70)("\n" + chalk.green("Description: ") + packageObject.description): "");
}
Expand Down

0 comments on commit 3a9b4a3

Please sign in to comment.