@@ -140,8 +140,8 @@ CLI.prototype.getCpuCoreSetting = function() {
|
140 | 140 | const isValid = /^(\d+(-\d+)?)(,\d+(-\d+)?)*$/.test(value); |
141 | 141 | if (!isValid) { |
142 | 142 | throw new Error(` |
143 | | - Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"), |
144 | | - a range of cores (e.g., "0-3"), or a list of cores/ranges |
| 143 | + Invalid CPUSET format: "${value}". Please use a single core number (e.g., "0"), |
| 144 | + a range of cores (e.g., "0-3"), or a list of cores/ranges |
145 | 145 | (e.g., "0,2,4" or "0-2,4").\n\n${this.usage} |
146 | 146 | `); |
147 | 147 | } |
|