From here https://github.com/iTwin/auth-clients/blob/main/packages/node-cli/src/TokenStore.ts we can see that there are several functions which exit early if linux is the os, for instance:
|
if (process.platform === "linux") |
I feel like we've had some degree of compatibility with linux in the past, but don't see how with these storage functions returning early.
We need linux support, so let's take a look.
From here https://github.com/iTwin/auth-clients/blob/main/packages/node-cli/src/TokenStore.ts we can see that there are several functions which exit early if linux is the os, for instance:
auth-clients/packages/node-cli/src/TokenStore.ts
Line 82 in 12321ca
I feel like we've had some degree of compatibility with linux in the past, but don't see how with these storage functions returning early.
We need linux support, so let's take a look.