mirror of
https://github.com/tiktok/sparo.git
synced 2025-02-17 00:21:14 -05:00
chore: improve error log when failed to evaluate project selectors
This commit is contained in:
parent
eb13bd438a
commit
9025c44a4e
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ export class GitSparseCheckoutService {
|
|||
});
|
||||
|
||||
if (result.status !== 0) {
|
||||
throw new Error(`Failed to evaluate the Sparo profile's project selectors: ${result.stderr}`);
|
||||
throw new Error(`Failed to evaluate the Sparo profile's project selectors:\nstdout: ${result.stdout}\nstderr: ${result.stderr}`);
|
||||
}
|
||||
|
||||
const processedResult: string = this._processListResult(result.stdout.toString());
|
||||
|
|
Loading…
Reference in a new issue