From 14693692d044f619dca0e97be2f8070c969b2e81 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 13 Mar 2023 00:13:25 -0400 Subject: [PATCH] Adding updater script --- update.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 update.sh diff --git a/update.sh b/update.sh new file mode 100644 index 0000000..2dc42e7 --- /dev/null +++ b/update.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# Stating Message +echo "" + +# TODO - Add an updater for Stable Diffusion API + +# Update the git Repo +git fetch -a -p +git pull + +# Install any new libraries +npm i + +# Update complete message +echo "" \ No newline at end of file