@salesforce/source-tracking 2.2.16-dev.2 → 2.2.16-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -192,7 +192,7 @@ class ShadowRepo {
|
|
|
192
192
|
if (e instanceof git.Errors.MultipleGitError) {
|
|
193
193
|
this.logger.error('multiple errors on git.add', e.errors.slice(0, 5));
|
|
194
194
|
const error = new core_1.SfError(e.message, e.name, [
|
|
195
|
-
`This error may be thrown because the number of files that source tracking is batching is exceeding your user specific file limits. Either increase your hard file limit in the same session with 'ulimit -Hn ${this.maxFileAdd}', or set the 'SFDX_SOURCE_TRACKING_BATCH_SIZE' environment variable to a value lower than the output of 'ulimit -Hn'
|
|
195
|
+
`This error may be thrown because the number of files that source tracking is batching is exceeding your user specific file limits. Either increase your hard file limit in the same session with 'ulimit -Hn ${this.maxFileAdd}', or set the 'SFDX_SOURCE_TRACKING_BATCH_SIZE' environment variable to a value lower than the output of 'ulimit -Hn'.\nNote: Do set this env var too close or your system will still hit the limit. If you continue to get the error, lower the value of the env var even more.`,
|
|
196
196
|
], 1);
|
|
197
197
|
error.setData(e.errors);
|
|
198
198
|
throw error;
|
package/package.json
CHANGED