Add Bootstrap Scripts

This commit is contained in:
GuilhermeWerner
2021-07-04 10:16:04 -03:00
parent 22a5dd600b
commit b8b36dd68d
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