We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 011912f commit 97c9905Copy full SHA for 97c9905
packages/uhk-agent/src/util/get-udev-file-content-async.ts
@@ -5,6 +5,10 @@ import { promisify } from 'util';
5
const readFileAsync = promisify(readFile);
6
7
export async function getUdevFileContentAsync(rootDir: string): Promise<string> {
8
+ if (process.platform !== 'linux') {
9
+ return '';
10
+ }
11
+
12
const filePath = join(rootDir, 'rules/50-uhk60.rules');
13
14
return readFileAsync(filePath, { encoding: 'utf-8' });
0 commit comments