File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ kubectl describe pvc home-volume-devmachine-0
105105/home/dev/
106106├── .ssh/authorized_keys # SSH keys
107107├── venv/ # Python venv (auto-activated)
108- ├── bin/ # Your binaries or optional bin/go installation
108+ ├── .local/ bin/ # Your binaries or optional bin/go installation
109109└── projects/ # Your code
110110```
111111
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ metadata:
55data :
66 .bashrc : |
77 # ~/.bashrc for dev user
8- export PATH="/home/dev/bin:/home/dev/bin/go/bin:$PATH"
8+ export PATH="/home/dev/.local/ bin:/home/dev/.local /bin/go/bin:$PATH"
99 export PYTHONUSERBASE="$HOME/.local"
1010
1111 # Colors
Original file line number Diff line number Diff line change 8787 source "$VENV_DIR/bin/activate"
8888
8989 # Create user bin directory
90- BIN_DIR="/home/dev/bin"
90+ BIN_DIR="/home/dev/.local/ bin"
9191 if [ ! -d "$BIN_DIR" ]; then
9292 echo "Creating user bin directory at $BIN_DIR"
9393 mkdir -p "$BIN_DIR"
9696 echo "User bin directory already exists at $BIN_DIR, skipping creation"
9797 fi
9898
99-
10099 # Create local dev bashrc file if it doesn't exist
101100 DEV_BASHRC="/home/dev/.dev_bashrc"
102101 if [ ! -f "$DEV_BASHRC" ]; then
You can’t perform that action at this time.
0 commit comments