From 810792f5bbf45fc74718ee4d0faf1811c39655b2 Mon Sep 17 00:00:00 2001 From: Daniel Alejandro Gallegos Date: Sat, 21 Sep 2024 09:19:19 -0400 Subject: [PATCH] feat: add helper scripts to init/update repo --- init.sh | 3 +++ update.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 init.sh create mode 100755 update.sh diff --git a/init.sh b/init.sh new file mode 100755 index 0000000..d73a96f --- /dev/null +++ b/init.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +git submodule update --init --recursive diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..1401e3b --- /dev/null +++ b/update.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +git submodule update --recursive --remote