Merge pull request #15561 from speculativemoonstone/fix-launch-git-directories

Allow webui.sh to be runnable from arbitrary directories containing a .git file
This commit is contained in:
AUTOMATIC1111 2024-04-21 07:21:21 +03:00 committed by GitHub
commit 8d6e72dbfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -113,13 +113,13 @@ then
exit 1
fi
if [[ -d .git ]]
if [[ -d "$SCRIPT_DIR/.git" ]]
then
printf "\n%s\n" "${delimiter}"
printf "Repo already cloned, using it as install directory"
printf "\n%s\n" "${delimiter}"
install_dir="${PWD}/../"
clone_dir="${PWD##*/}"
install_dir="${SCRIPT_DIR}/../"
clone_dir="${SCRIPT_DIR##*/}"
fi
# Check prerequisites