From 08557b5f36bbbaedb3d2e64bfbc027f909fcbae4 Mon Sep 17 00:00:00 2001 From: Guilherme Werner Date: Sun, 7 Jan 2024 19:08:31 -0300 Subject: [PATCH] Add boostrap scripts --- bootstrap.ps1 | 4 ++++ bootstrap.sh | 4 ++++ 2 files changed, 8 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..4c23948 --- /dev/null +++ b/bootstrap.ps1 @@ -0,0 +1,4 @@ +#!/usr/bin/env pwsh + +git submodule update --init --recursive +pnpm install diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100644 index 0000000..c2e17b9 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env sh + +git submodule update --init --recursive +pnpm install