mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-07 20:06:23 +00:00
23 lines
250 B
PowerShell
Executable file
23 lines
250 B
PowerShell
Executable file
#!/usr/bin/env pwsh
|
|
|
|
# Windows
|
|
|
|
if ($IsWindows)
|
|
{
|
|
}
|
|
|
|
# Mac
|
|
|
|
elseif ($IsMacOS)
|
|
{
|
|
sudo chmod +x ./gradlew
|
|
sudo chmod +x ./Scripts/Package.ps1
|
|
}
|
|
|
|
# Linux
|
|
|
|
elseif ($IsLinux)
|
|
{
|
|
sudo chmod +x ./gradlew
|
|
sudo chmod +x ./Scripts/Package.ps1
|
|
}
|