Skip to content

Commit

Permalink
Update dist files for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Aug 11, 2023
1 parent d9c8bb1 commit b68147c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion aad-user-sync/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58915,7 +58915,8 @@ async function main() {
}
} catch (error) {
// If an error occurs, log it and continue to the next group (if configured to do so).
logError(group.displayName, error);
console.error(`Error processing group "${group.displayName}": ${error.message}`);
console.error(error);
if (!continueOnErrors) {
process.exit(1); // exit with error code
}
Expand Down
1 change: 1 addition & 0 deletions create-teams-from-directories/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36797,6 +36797,7 @@ try {
main();
} catch (error) {
console.error(`Error: ${error.name}: ${error.message}`);
console.error(error);
if (!continueOnErrors) {
process.exit(1); // exit with error code
}
Expand Down
3 changes: 2 additions & 1 deletion sync-repositories/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36947,7 +36947,8 @@ async function main() {
console.log(`Processing team "${teamName}"`);
await processTeam(teamName);
} catch (error) {
console.error(`Error processing team ${teamName}: ${error.message}`);
console.error(`Error processing team "${teamName}": ${error.message}`);
console.error(error);
if (!continueOnErrors) {
process.exit(1); // exit with error code
}
Expand Down
3 changes: 2 additions & 1 deletion sync-users/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34862,7 +34862,8 @@ async function main() {
try {
await processTeam(teamName);
} catch (error) {
console.error(`Error processing team ${teamName}: ${error.message}`);
console.error(`Error processing team "${teamName}": ${error.message}`);
console.error(error);
if (!continueOnErrors) {
process.exit(1); // exit with error code
}
Expand Down

0 comments on commit b68147c

Please sign in to comment.