Skip to content

Commit be0e125

Browse files
committed
lint
1 parent f599e07 commit be0e125

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/tc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ async function getDefaultInterface() {
1919
const result = await shell(command);
2020
if (result.stdout.length === 0) {
2121
const result = await shell('sudo ip route show');
22-
throw new Error('There was an error getting the default interface %s', result.stdout);
22+
throw new Error(
23+
'There was an error getting the default interface %s',
24+
result.stdout
25+
);
2326
}
2427
return result.stdout;
2528
}

0 commit comments

Comments
 (0)