Make it possible to run a portable Web UI build via a symlink (#7277)

This commit is contained in:
reksarka 2025-10-22 20:55:17 +03:00 committed by GitHub
parent 24fd2b4dec
commit 138cc654c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ export PYTHONNOUSERSITE=1
unset PYTHONPATH unset PYTHONPATH
unset PYTHONHOME unset PYTHONHOME
cd "$(dirname "${BASH_SOURCE[0]}")" cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
# Portable install case # Portable install case
if [ -d "portable_env" ]; then if [ -d "portable_env" ]; then

View file

@ -5,7 +5,7 @@ export PYTHONNOUSERSITE=1
unset PYTHONPATH unset PYTHONPATH
unset PYTHONHOME unset PYTHONHOME
cd "$(dirname "${BASH_SOURCE[0]}")" cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
# Portable install case # Portable install case
if [ -d "portable_env" ]; then if [ -d "portable_env" ]; then