Add +x permissions on scripts

This commit is contained in:
Guilherme 2021-04-30 12:16:45 -03:00
parent 1cc8b7ac2e
commit 3b8947fffa
4 changed files with 5 additions and 23 deletions

15
Bootstrap.ps1 Normal file → Executable file
View file

@ -1,19 +1,10 @@
#!/usr/bin/env pwsh
# Windows
if ($IsWindows)
{
}
# Mac
elseif ($IsMacOS)
{
}
# Linux
elseif ($IsLinux)
else
{
sudo chmod +x ./gradlew
sudo chmod +x ./Scripts/Package.ps1
}