mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-07 20:06:23 +00:00
19 lines
114 B
PowerShell
19 lines
114 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
# Windows
|
|
|
|
if ($IsWindows)
|
|
{
|
|
}
|
|
|
|
# Mac
|
|
|
|
elseif ($IsMacOS)
|
|
{
|
|
}
|
|
|
|
# Linux
|
|
|
|
elseif ($IsLinux)
|
|
{
|
|
}
|