Skip to content

Commit 97c9905

Browse files
ert78gbmondalaci
authored andcommitted
fix: udev file content reading on non Linux platform (#1144)
1 parent 011912f commit 97c9905

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/uhk-agent/src/util/get-udev-file-content-async.ts

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import { promisify } from 'util';
55
const readFileAsync = promisify(readFile);
66

77
export async function getUdevFileContentAsync(rootDir: string): Promise<string> {
8+
if (process.platform !== 'linux') {
9+
return '';
10+
}
11+
812
const filePath = join(rootDir, 'rules/50-uhk60.rules');
913

1014
return readFileAsync(filePath, { encoding: 'utf-8' });

0 commit comments

Comments
 (0)