We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have this in the code:
const windows = os.platform() === 'win32'; export function isWindows(): boolean { return windows; } const linux = os.platform() === 'linux'; export function isLinux(): boolean { return linux; } const darwin = os.platform() === 'darwin'; export function isMac(): boolean { return darwin; }
We should replace it with the built-in Podman Desktop functionality here:
import { env } from '@podman-desktop/api' env.isMac `` ### Describe alternatives you've considered _No response_ ### Additional context From https://github.com/containers/podman-desktop-extension-bootc/pull/865#discussion_r1784841518
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your enhancement related to a problem? Please describe
We have this in the code:
Describe the solution you'd like
We should replace it with the built-in Podman Desktop functionality here:
The text was updated successfully, but these errors were encountered: