Skip to content

Commit

Permalink
feat: better logs
Browse files Browse the repository at this point in the history
  • Loading branch information
atlj committed Dec 19, 2024
1 parent db1213f commit 34cf2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-native-builder-bob/src/targets/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export default async function customTarget({ options, root, report }: Options) {
stdio: ['ignore', 'ignore', 'inherit'],
});
} catch (e) {
report.error(`Couldn't run ${kleur.blue(options.script)} script`);
report.error(`Couldn't run the ${kleur.blue(options.script)} script`);
process.exit(1);
}

report.success(`Ran ${kleur.blue(options.script)} script succesfully`);
report.success(`Ran the ${kleur.blue(options.script)} script succesfully`);
}

0 comments on commit 34cf2b2

Please sign in to comment.