move install_core_system.sh to linux_configuration/ root

This commit is contained in:
Krzysztof kuhy Rudnicki 2026-05-15 01:17:49 +02:00
parent 1cd3901381
commit 9a955bb424
2 changed files with 25 additions and 2 deletions

View File

@ -0,0 +1,23 @@
{
"intent": "Move install_core_system.sh to linux_configuration/ root for easier discovery",
"scope": [
"linux_configuration/install_core_system.sh (moved from scripts/single_use/)"
],
"changes": [
"git mv to linux_configuration/ root",
"Update LINUX_CONFIG and REPO_ROOT path vars to match new location"
],
"verification": [
{
"command": "shellcheck linux_configuration/install_core_system.sh",
"result": "pass",
"evidence": "no warnings"
}
],
"risks": [
"None \u2014 pure rename + one-line path fix"
],
"rollback": [
"git revert HEAD"
]
}

View File

@ -24,8 +24,8 @@
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
LINUX_CONFIG="$(cd "$SCRIPT_DIR/../.." && pwd)"
REPO_ROOT="$(cd "$LINUX_CONFIG/.." && pwd)"
LINUX_CONFIG="$SCRIPT_DIR"
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
# ── Colour helpers ───────────────────────────────────────────────────────────
bold() { printf '\e[1m%s\e[0m' "$*"; }