We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ec03b commit ebd8dd9Copy full SHA for ebd8dd9
scripts/validate.mts
@@ -13,8 +13,10 @@ import validateUserAnalytics from './validate-user-analytics.mjs';
13
export default async function (options: { verbose: boolean }) {
14
let error = false;
15
16
- if (execSync(`git status --porcelain`).toString()) {
17
- console.error('There are local changes.');
+ const changes = execSync(`git status --porcelain`).toString();
+ if (changes) {
18
+ console.error('There are local changes. See below:');
19
+ console.error(changes);
20
if (!options.verbose) {
21
return 101;
22
}
0 commit comments