diff --git a/Bootstrap.ps1 b/Bootstrap.ps1 index 4360b90..2ff34da 100755 --- a/Bootstrap.ps1 +++ b/Bootstrap.ps1 @@ -1,23 +1 @@ #!/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 -} diff --git a/Bootstrap.sh b/Bootstrap.sh index e5a5567..0617957 100755 --- a/Bootstrap.sh +++ b/Bootstrap.sh @@ -1,16 +1 @@ #!/usr/bin/env sh - -sudo chmod +x ./gradlew -sudo chmod +x ./Scripts/Package.ps1 - -# Linux - -if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ] -then - -# Mac - -elif [ "$(uname)" = "Darwin" ] -then - -fi