@@ -28327,7 +28327,7 @@ function install_cf(version) {
2832728327function setup_cf(api) {
2832828328 return __awaiter(this, void 0, void 0, function* () {
2832928329 try {
28330- yield exec.exec("cf", ["api", api], { silent: true });
28330+ yield exec.exec("cf", ["api", api], { silent: false });
2833128331 core.info(">>> Successfully set CF API endpoint");
2833228332 }
2833328333 catch (error) {
@@ -28438,7 +28438,7 @@ function handleClientCredentials(client_id, client_secret) {
2843828438 if (!client_id || !client_secret) {
2843928439 throw new Error("Client Credentials authentication requires client_id and client_secret");
2844028440 }
28441- yield exec.exec("cf", ["auth", client_id, client_secret, "--client-credentials"], { silent: true });
28441+ yield exec.exec("cf", ["auth", client_id, client_secret, "--client-credentials"], { silent: false });
2844228442 core.info(">>> Successfully authenticated using client credentials");
2844328443 });
2844428444}
@@ -28448,7 +28448,7 @@ function handlePassword(username, password) {
2844828448 throw new Error("Password authentication requires username and password");
2844928449 }
2845028450 yield exec.exec("cf", ["auth", username, password], {
28451- silent: true ,
28451+ silent: false ,
2845228452 });
2845328453 core.info(">>> Successfully authenticated using password");
2845428454 });
0 commit comments