We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0e125 commit 3c30aebCopy full SHA for 3c30aeb
lib/tc.js
@@ -20,8 +20,7 @@ async function getDefaultInterface() {
20
if (result.stdout.length === 0) {
21
const result = await shell('sudo ip route show');
22
throw new Error(
23
- 'There was an error getting the default interface %s',
24
- result.stdout
+ `There was an error getting the default interface ${result.stdout}`
25
);
26
}
27
return result.stdout;
0 commit comments