diff --git a/Bootstrap.ps1 b/Bootstrap.ps1 new file mode 100644 index 0000000..1375016 --- /dev/null +++ b/Bootstrap.ps1 @@ -0,0 +1,19 @@ +#!/usr/bin/env pwsh + +# Windows + +if ($IsWindows) +{ +} + +# Mac + +elseif ($IsMacOS) +{ +} + +# Linux + +elseif ($IsLinux) +{ +} diff --git a/Bootstrap.sh b/Bootstrap.sh new file mode 100644 index 0000000..63a867e --- /dev/null +++ b/Bootstrap.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env sh + +# Linux + +if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ] +then + +# Mac + +elif [ "$(uname)" = "Darwin" ] +then + +fi