diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 11:24:36 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 11:24:36 +0200 |
commit | da307fb4c6b5028d50c09dec7265ce8715e035d5 (patch) | |
tree | cd006cd4a537f05e413fa3c662237abe9e9ceb07 | |
parent | 36cc18d2b6d0eefd00a25a02bb4a407e700b5f9f (diff) |
Subtree update scripts added.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rwxr-xr-x | deps/update_cpp-httplib.sh | 6 | ||||
-rwxr-xr-x | deps/update_inja.sh | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/deps/update_cpp-httplib.sh b/deps/update_cpp-httplib.sh new file mode 100755 index 0000000..e16d5b7 --- /dev/null +++ b/deps/update_cpp-httplib.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +MYDIR="$(dirname ${0})" +cd "${MYDIR}/.." + +git subtree pull --squash --prefix=deps/cpp-httplib https://github.com/yhirose/cpp-httplib.git master diff --git a/deps/update_inja.sh b/deps/update_inja.sh new file mode 100755 index 0000000..0b3546c --- /dev/null +++ b/deps/update_inja.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +MYDIR="$(dirname ${0})" +cd "${MYDIR}/.." + +git subtree pull --squash --prefix=deps/inja https://github.com/pantor/inja.git master |