mirror of
https://github.com/guilhermewerner/http
synced 2025-06-16 11:44:17 +00:00
Add Bootstrap Scripts
This commit is contained in:
19
Bootstrap.ps1
Normal file
19
Bootstrap.ps1
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env pwsh
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
|
||||||
|
if ($IsWindows)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
# Mac
|
||||||
|
|
||||||
|
elseif ($IsMacOS)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
# Linux
|
||||||
|
|
||||||
|
elseif ($IsLinux)
|
||||||
|
{
|
||||||
|
}
|
13
Bootstrap.sh
Normal file
13
Bootstrap.sh
Normal 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
|
Reference in New Issue
Block a user