mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-07 20:06:23 +00:00
10 lines
115 B
PowerShell
Executable file
10 lines
115 B
PowerShell
Executable file
#!/usr/bin/env pwsh
|
|
|
|
if ($IsWindows)
|
|
{
|
|
python ./Scripts/Package.py
|
|
}
|
|
else
|
|
{
|
|
python3 ./Scripts/Package.py
|
|
}
|