Adding updater script

This commit is contained in:
Logan Cusano
2023-03-13 00:13:25 -04:00
parent a86e4b2876
commit 14693692d0

15
update.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Stating Message
echo "<!-- UPDATING ---!>"
# 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 "<!--- UPDATE COMPLETE! ---!>"