Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
- Quote Docker volume names to avoid word splitting - Add missing shebangs for proper shell detection - Annotate sourced scripts for ShellCheck resolution - Remove unused variables - Explicitly disable SC2016 where literal RC strings are intended - Improve robustness of cleanup logic https://chatgpt.com/share/693d6557-a080-800f-8915-c57476569232
12 lines
445 B
Bash
Executable File
12 lines
445 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ------------------------------------------------------------
|
|
# Nix shell mode: do not touch venv, only run install
|
|
# ------------------------------------------------------------
|
|
|
|
echo "[setup] Nix mode enabled (NIX_ENABLED=1)."
|
|
echo "[setup] Skipping virtualenv creation and dependency installation."
|
|
echo "[setup] Running install via system python3..."
|
|
python3 -m pkgmgr install
|
|
echo "[setup] Setup finished (Nix mode)."
|