mirror of
https://github.com/l5yth/potato-mesh.git
synced 2026-07-06 18:01:19 +02:00
36 lines
1.6 KiB
Bash
Executable File
36 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright © 2025-26 l5yth & contributors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -euo pipefail
|
|
|
|
# Recreate the venv only when its interpreter is missing or no longer reports a
|
|
# .venv prefix. Avoid --clear on every run: it wipes installed packages before
|
|
# each start, so any restart during a PyPI outage turns a transient network
|
|
# failure into hard ingestor downtime.
|
|
#
|
|
# The guard probes .venv/bin/python — a relocatable symlink to the system
|
|
# interpreter that keeps working after the checkout is moved or copied. The
|
|
# console scripts (.venv/bin/pip, ...) are NOT relocatable: their shebang bakes
|
|
# in the venv's absolute path at creation time, so a moved checkout leaves them
|
|
# pointing at a missing interpreter ("bad interpreter: No such file..."). Drive
|
|
# pip via `python -m pip` so installs survive a relocated checkout without a
|
|
# full rebuild.
|
|
if ! .venv/bin/python -c "import sys; exit(0 if '.venv' in sys.prefix else 1)" 2>/dev/null; then
|
|
python -m venv --clear .venv
|
|
fi
|
|
.venv/bin/python -m pip install -U pip
|
|
.venv/bin/python -m pip install -r "$(dirname "$0")/requirements.txt"
|
|
exec .venv/bin/python mesh.py
|