From b8b36dd68dbd472e30f97bcb484e8a6c927c7f9c Mon Sep 17 00:00:00 2001 From: GuilhermeWerner <26710260+GuilhermeWerner@users.noreply.github.com> Date: Sun, 4 Jul 2021 10:16:04 -0300 Subject: [PATCH] Add Bootstrap Scripts --- Bootstrap.ps1 | 19 +++++++++++++++++++ Bootstrap.sh | 13 +++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 Bootstrap.ps1 create mode 100644 Bootstrap.sh 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