Skip to content

Commit

Permalink
Change ListAction due to structural changes in the management informa…
Browse files Browse the repository at this point in the history
…tion file
  • Loading branch information
TakayasuKoura committed Jul 20, 2022
1 parent b643ba6 commit a02aa01
Showing 1 changed file with 39 additions and 4 deletions.
43 changes: 39 additions & 4 deletions libs/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,28 +262,63 @@ export class ListAction {
content.name,
content.url,
content.path,
content.catalogUrl,
content.catalogResourceId,
content.lastModified,
content.eTag,
content.lastDonwloaded,
content.integrity,
content.postProcesses.join(","),
content.headers,
);
} else {
console.log(
content.name,
);
console.log(
" - URL :",
" - URL :",
Colors.green(content.url),
);
console.log(
" - Name :",
" - Name :",
Colors.green(content.name),
);
console.log(
" - File path :",
" - File path :",
Colors.green(content.path),
);
console.log(
" - Post processes:",
" - Catalog URL :",
Colors.green(content.catalogUrl),
);
console.log(
" - Catalog resourceid:",
Colors.green(content.catalogResourceId),
);
console.log(
" - Last modified :",
Colors.green(content.lastModified),
);
console.log(
" - ETag :",
Colors.green(content.eTag),
);
console.log(
" - Last donwloaded :",
Colors.green(content.lastDonwloaded.toString()),
);
console.log(
" - Integrity :",
Colors.green(content.integrity),
);
console.log(
" - Post processes :",
Colors.green(content.postProcesses.join(", ")),
);
console.log(
" - Headers :",
Colors.green(JSON.stringify(content.headers)),
);
console.log();
}
});
Expand Down

0 comments on commit a02aa01

Please sign in to comment.