From 877e4d8bf87bc03ebfed60e822a6ba1b7a6dbc01 Mon Sep 17 00:00:00 2001 From: colin Date: Mon, 12 Aug 2024 07:29:26 -0700 Subject: Add: html-string and pretty-print control --- get-cicadas-deps.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 get-cicadas-deps.sh (limited to 'get-cicadas-deps.sh') diff --git a/get-cicadas-deps.sh b/get-cicadas-deps.sh new file mode 100755 index 0000000..bea0ebe --- /dev/null +++ b/get-cicadas-deps.sh @@ -0,0 +1,24 @@ +LOCAL_PROJECTS=$1 + +cd $LOCAL_PROJECTS + +if [ ! -d argot ]; then + git clone https://cicadas.surf/cgit/colin/argot.git +else + cd argot && git checkout main && git pull origin main && cd ..; +fi + +if [ ! -d def ]; then + git clone https://cicadas.surf/cgit/colin/def.git +else + cd def && git checkout main && git pull origin main && cd ..; +fi + +if [ ! -d ~/quicklisp/local-projects/hypnotisml ]; then + git clone https://cicadas.surf/cgit/colin/hypnotisml.git +else + cd hypnotisml && git checkout main && git pull origin main && cd ..; +fi + + + -- cgit v1.2.3