mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
11 lines
197 B
Bash
11 lines
197 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
INSTALL_ENV_DIR="$(pwd)/installer_files/env"
|
||
|
|
||
|
if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH;$INSTALL_ENV_DIR/bin"; fi
|
||
|
|
||
|
# update the repo
|
||
|
if [ -e ".git" ]; then
|
||
|
git pull
|
||
|
fi
|