mirror of
https://github.com/tribufu/tribufu-java
synced 2026-05-06 06:47:27 +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
|
|
}
|