Add Bootstrap Scripts

This commit is contained in:
GuilhermeWerner 2021-04-17 09:07:19 -03:00
parent 6001900810
commit 324a79e82f
2 changed files with 32 additions and 0 deletions

19
Bootstrap.ps1 Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env pwsh
# Windows
if ($IsWindows)
{
}
# Mac
elseif ($IsMacOS)
{
}
# Linux
elseif ($IsLinux)
{
}

13
Bootstrap.sh Normal file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env sh
# Linux
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then
# Mac
elif [ "$(uname)" = "Darwin" ]
then
fi