Update bootstrap scripts

This commit is contained in:
GuilhermeWerner
2021-09-03 10:56:17 -03:00
parent fead097900
commit 2b57aaa9e4
2 changed files with 0 additions and 30 deletions

View File

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

View File

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