mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:03:13 +02:00
move install_core_system.sh to linux_configuration/ root
This commit is contained in:
parent
1cd3901381
commit
9a955bb424
23
docs/superpowers/evidence/move-install-core-system.json
Normal file
23
docs/superpowers/evidence/move-install-core-system.json
Normal 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"
|
||||
]
|
||||
}
|
||||
@ -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' "$*"; }
|
||||
Loading…
Reference in New Issue
Block a user